This commit is contained in:
Alexander M. Turek
2002-12-01 20:00:25 +00:00
parent db133f8189
commit 71295834ea
2 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-12-01 Alexander M. Turek <rabus@users.sourceforge.net>
* libaries/grab_globals.lib.php3: Merged a possible fix against bug #641652.
2002-12-01 Marc Delisle <lem9@users.sourceforge.net> 2002-12-01 Marc Delisle <lem9@users.sourceforge.net>
* user_details.php3: the script wrongly created a user % when asked * user_details.php3: the script wrongly created a user % when asked
to create an anonymous user (should be empty) to create an anonymous user (should be empty)

View File

@@ -54,6 +54,9 @@ if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
if (isset($table)) { if (isset($table)) {
$table = stripslashes($table); $table = stripslashes($table);
} }
if (isset($sql_query)) {
$sql_query = stripslashes($sql_query);
}
} }
} // $__PMA_GRAB_GLOBALS_LIB__ } // $__PMA_GRAB_GLOBALS_LIB__