PHP version 4.2.x is 402xx

This commit is contained in:
Marc Delisle
2002-11-02 10:26:40 +00:00
parent 72adb22234
commit 3a658bba32
2 changed files with 6 additions and 3 deletions

View File

@@ -6,6 +6,9 @@ $Id$
$Source$ $Source$
2002-11-02 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3: correct detection of PHP 4.2.x
2002-11-02 Alexander M. Turek <rabus@users.sourceforge.net> 2002-11-02 Alexander M. Turek <rabus@users.sourceforge.net>
* db_datadict.php3: Fixed bug #632515 (JS error in data dictonary). * db_datadict.php3: Fixed bug #632515 (JS error in data dictonary).
* lang/german-*.inc.php3: Updates. * lang/german-*.inc.php3: Updates.

View File

@@ -90,7 +90,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
. '</pre>' . "\n"; . '</pre>' . "\n";
flush(); flush();
if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) {
ob_flush(); ob_flush();
} }
} // end of the "PMA_SQP_throwError()" function } // end of the "PMA_SQP_throwError()" function
@@ -127,7 +127,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
. '----' . $GLOBALS['strEndCut'] . '----' . '<br />' . "\n"; . '----' . $GLOBALS['strEndCut'] . '----' . '<br />' . "\n";
flush(); flush();
if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) {
ob_flush(); ob_flush();
} }
@@ -138,7 +138,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
. '----' . $GLOBALS['strEndRaw'] . '----<br />' . "\n"; . '----' . $GLOBALS['strEndRaw'] . '----<br />' . "\n";
flush(); flush();
if (PMA_PHP_INT_VERSION >= 42000 && @function_exists('ob_flush')) { if (PMA_PHP_INT_VERSION >= 40200 && @function_exists('ob_flush')) {
ob_flush(); ob_flush();
} }
} // end of the "PMA_SQP_bug()" function } // end of the "PMA_SQP_bug()" function