This commit is contained in:
Robin Johnson
2003-02-13 04:25:50 +00:00
parent 56e9cb638f
commit 26cb729a3e
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-02-09 Robin Johnson <robbat2@users.sourceforge.net>
* sql.php3: Fix simple little bug #685082
2003-02-12 Alexander M. Turek <rabus@users.sourceforge.net>
* server_privileges.php3: Fixed bug #684947 ('uncheck all' of 'privileges'
is broken), thanks to Alexander Schuch (ci-dev).

View File

@@ -502,7 +502,7 @@ else {
// Display previous update query (from tbl_replace)
if (isset($disp_query) && $cfg['ShowSQL'] == TRUE) {
$tmp_sql_query = $GLOBALS['sql_query'];
$tmp_sql_limit_to_append = $GLOBALS['sql_limit_to_append'];
$tmp_sql_limit_to_append = (isset($GLOBALS['sql_limit_to_append'])?$GLOBALS['sql_limit_to_append']:'');
$GLOBALS['sql_query'] = stripslashes($disp_query);
$GLOBALS['sql_limit_to_append'] = '';
PMA_showMessage($disp_message);