From 9e25784d3ff3a6bab35e799017a3baafc777dbf3 Mon Sep 17 00:00:00 2001 From: Robin Johnson Date: Wed, 15 Aug 2001 17:03:13 +0000 Subject: [PATCH] Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3 --- ChangeLog | 3 +++ tbl_replace.php3 | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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') {