bug 922553
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2004-03-24 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/common.lib.php: bug 922553, wrong boundary check in
|
||||
PMA_flipstring(), thanks to Virgile Petit (pvtc)
|
||||
|
||||
2004-03-24 Michal Cihar <michal@cihar.com>
|
||||
* lang/*: Added missing "$strConnectionError" (bug #922006).
|
||||
|
||||
|
@@ -1785,7 +1785,7 @@ if (typeof(document.getElementById) != 'undefined'
|
||||
$format_string = '';
|
||||
$charbuff = false;
|
||||
|
||||
for ($i = 0; $i <= strlen($string); $i++) {
|
||||
for ($i = 0; $i < strlen($string); $i++) {
|
||||
$char = $string{$i};
|
||||
$append = false;
|
||||
|
||||
|
Reference in New Issue
Block a user