diff --git a/ChangeLog b/ChangeLog index 29a51155c..da8c2fafe 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ $Id$ $Source$ +2002-11-02 Marc Delisle + * libraries/sqlparser.lib.php3: correct detection of PHP 4.2.x + 2002-11-02 Alexander M. Turek * db_datadict.php3: Fixed bug #632515 (JS error in data dictonary). * lang/german-*.inc.php3: Updates. diff --git a/libraries/sqlparser.lib.php3 b/libraries/sqlparser.lib.php3 index 80f53fe3b..0d65da413 100644 --- a/libraries/sqlparser.lib.php3 +++ b/libraries/sqlparser.lib.php3 @@ -90,7 +90,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) { . '' . "\n"; flush(); - if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { + if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) { ob_flush(); } } // end of the "PMA_SQP_throwError()" function @@ -127,7 +127,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) { . '----' . $GLOBALS['strEndCut'] . '----' . '
' . "\n"; flush(); - if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { + if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) { ob_flush(); } @@ -138,7 +138,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) { . '----' . $GLOBALS['strEndRaw'] . '----
' . "\n"; flush(); - if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { + if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) { ob_flush(); } } // end of the "PMA_SQP_bug()" function