Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3

This commit is contained in:
Robin Johnson
2001-08-15 17:03:13 +00:00
parent e85f464b1a
commit 9e25784d3f
2 changed files with 5 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-08-15 Robin Johnson <robbat2@orbis-terrarum.net>
* Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3
2001-08-15 Steve Alberty <alberty@neptunlabs.de>
* lib.inc.php3: prevent to use dl() if dl not exists (PHP5).

View File

@@ -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') {