Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3
This commit is contained in:
@@ -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).
|
||||
|
||||
|
@@ -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') {
|
||||
|
Reference in New Issue
Block a user