This commit is contained in:
Alexander M. Turek
2002-08-22 07:08:39 +00:00
parent 97cedeb931
commit 98e16357dd
2 changed files with 6 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-08-22 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/sqlvalidator.lib.php3: Fixed bug #594947.
2002-08-21 Marc Delisle <lem9@users.sourceforge.net> 2002-08-21 Marc Delisle <lem9@users.sourceforge.net>
* db_details.php3, read_dump.php3, libraries/functions.js, lang/*, * db_details.php3, read_dump.php3, libraries/functions.js, lang/*,
config.inc.php3, Documentation.html: web-based upload directory, config.inc.php3, Documentation.html: web-based upload directory,

View File

@@ -62,7 +62,9 @@ if (!defined('PMA_SQL_VALIDATOR_INCLUDED')) {
$str = ''; $str = '';
if ($cfg['SQLValidator']['use'] == TRUE) { if ($cfg['SQLValidator']['use']
&& !(isset($GLOBALS['sqlvalidator_error'])
&& $GLOBALS['sqlvalidator_error'])) {
// create new class instance // create new class instance
$srv = new PMA_SQLValidator(); $srv = new PMA_SQLValidator();