Hi,
the new version have many problems with german umlauts.
The normal output works, but the echo over
mysql_die for example, convert the special
characters like ü to ü
also the output over javascripts is wrong.
a temporary solution is a back-convert in the
affected string, ü to ü
should i do this?
Regards,
Steve
> Correct code will not be so pretty:
>
> <textarea name="fields[<?php echo urlencode($field); ?>]"
> rows="<?php echo $cfgTextareaRows; ?>"
> cols="<?php echo $cfgTextareaCols; ?>"><?php if
> (!empty($special_chars)) echo $special_chars . "\n"; ?>
> </textarea>
I think your code still inserts a line feed at the end of
the textarea. Correct code would be even less pretty:
<textarea name="fields[<?php echo urlencode($field); ?>]"
rows="<?php echo $cfgTextareaRows; ?>"
cols="<?php echo $cfgTextareaCols; ?>"><?php if
(!empty($special_chars)) echo $special_chars . "\n";
?></textarea>
Hi,
sometimes we want to beautify the code by inserting line feeds, like
this:
<textarea name="fields[<?php echo urlencode($field); ?>]"
rows="<?php echo $cfgTextareaRows; ?>"
cols="<?php echo $cfgTextareaCols; ?>">
<?php if (!empty($special_chars)) echo $special_chars . "\n"; ?>
</textarea>
The problem here is the line feed inserted before the last <?php, it
inserts
unwanted characters into the textarea.
Correct code will not be so pretty:
<textarea name="fields[<?php echo urlencode($field); ?>]"
rows="<?php echo $cfgTextareaRows; ?>"
cols="<?php echo $cfgTextareaCols; ?>"><?php if
(!empty($special_chars)) echo $special_chars . "\n"; ?>
</textarea>
Marc
Hi,
This one solves compatibility problems with PHP3. Also there was a bug
that I introduced in
lib.inc.php3, now there are comments in it about the required order of
the sections, for compatibility
with PHP3 and 4.
http://phpmyadmin.sourceforge.net/phpMyAdmin-loic7.tar.gz
P.S.: can we put this one in cvs? :)
Marc
Ok, ive put my login script in the patches, under the name nolimits.
Check it out, tell me if it works for you, scrutinize it :P and
enjoy!
Cheers guys
Nervlord aka nolimits aka peter
__________________________________________________________________
Get your free Australian email account at http://www.start.com.au
Hello Marc,
>>Please test it, I would like to replace our cvs version with this one, then unfreeze cvs.
Care to share the Url ?
Alain.
_______________________________________________________
Hi guys! been using your product a bit
if you check out
http://134.7.79.14/phpadmin/admin/index.php youll see that i have
implemented a small security login script, if you guys want to check
in to CVS the code, reply on this mailing list and ill be sure to send
the code to the list, anyone who can find any problems with it too
should contact me :) Also ive been thinking bout keywords in table
names without backquotes, im working on a patch with javascript that
will stop people entering keyworsd, or atleast ask tell them there
mysql reserved words and are they sure they want to do it.
__________________________________________________________________
Get your free Australian email account at http://www.start.com.au