Comparsion is == and not = (bug #1054758).

This commit is contained in:
Michal Čihař
2004-11-01 10:25:08 +00:00
parent 8f0b67d81b
commit a01a885f84
2 changed files with 4 additions and 1 deletions

View File

@@ -6,6 +6,9 @@ $Id$
$Source$
2004-11-01 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Comparsion is == and not = (bug #1054758).
2004-10-29 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php (top index): MySQLi compatibility,
use PMA_convert_using() in case of non-latin1 user table,

View File

@@ -1662,7 +1662,7 @@ if (typeof(document.getElementById) != 'undefined'
$query_base = PMA_validateSQL($query_base);
} else {
// avoid reparsing query:
if (isset($GLOBALS['parsed_sql']) && $query_base = $GLOBALS['parsed_sql']['raw']) {
if (isset($GLOBALS['parsed_sql']) && $query_base == $GLOBALS['parsed_sql']['raw']) {
$parsed_sql = $GLOBALS['parsed_sql'];
} else {
$parsed_sql = PMA_SQP_parse($query_base);