PHP version 4.2.x is 402xx
This commit is contained in:
@@ -6,6 +6,9 @@ $Id$
|
||||
$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>
|
||||
* db_datadict.php3: Fixed bug #632515 (JS error in data dictonary).
|
||||
* lang/german-*.inc.php3: Updates.
|
||||
|
@@ -90,7 +90,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
|
||||
. '</pre>' . "\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'] . '----' . '<br />' . "\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'] . '----<br />' . "\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
|
||||
|
Reference in New Issue
Block a user