bug 922553

This commit is contained in:
Marc Delisle
2004-03-24 18:05:44 +00:00
parent dea9f9ed7c
commit cf4bba92d9
2 changed files with 5 additions and 1 deletions

View File

@@ -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).

View File

@@ -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;