diff --git a/ChangeLog b/ChangeLog index b69bd0ff1..c11f92e89 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-08-15 Robin Johnson + * Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3 + 2001-08-15 Steve Alberty * lib.inc.php3: prevent to use dl() if dl not exists (PHP5). diff --git a/tbl_replace.php3 b/tbl_replace.php3 index 0137f5f32..1e78f386c 100755 --- a/tbl_replace.php3 +++ b/tbl_replace.php3 @@ -58,7 +58,7 @@ if (isset($primary_key) && ($submit_type != $strInsertAsNewRow)) { while (list($key, $val) = each($fields)) { if ($is_encoded) { $key = urldecode($key); - $val = urldecode($val); + $val = rawurldecode($val); } switch (strtolower($val)) { @@ -114,7 +114,7 @@ else { while (list($key, $val) = each($fields)) { if ($is_encoded) { $key = urldecode($key); - $val = urldecode($val); + $val = rawurldecode($val); } // the 'query' row is urlencoded in sql.php3 else if ($key == 'query') {