ChangeLog read_dump.php3 sql.php3 libraries/common.lib.php3 libraries/sqlparser.lib.php3: Fixed bug #641765, see mailing list post

This commit is contained in:
Robin Johnson
2003-01-13 06:59:45 +00:00
parent 6d14f56346
commit a66c941f35
5 changed files with 31 additions and 4 deletions

View File

@@ -84,15 +84,19 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
$debugstr = 'ERROR: ' . $message . "\n";
$debugstr .= 'SQL: ' . $sql;
echo $GLOBALS['strSQLParserUserError'] . '<br />' . "\n"
global $SQP_errorString;
$SQP_errorString = '<p>'.$GLOBALS['strSQLParserUserError'] . '</p>' . "\n"
. '<pre>' . "\n"
. $debugstr . "\n"
. '</pre>' . "\n";
/*
// Removed to solve bug #641765 - Robbat2 - 12 January 2003, 9:46PM
flush();
if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) {
ob_flush();
}
*/
} // end of the "PMA_SQP_throwError()" function