diff --git a/ChangeLog b/ChangeLog index bc0370e8e..79b7e7b4c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,13 +6,15 @@ $Id$ $Source$ 2001-09-19 Marc Delisle - * tbl_properties.php3, db_details.php3, lang/*: start to merge new - messages with parameters + * tbl_properties.php3, db_details.php3, lang/*: start to merge new messages + with parameters. 2001-09-19 Loïc Chapeaux * main.php3: merged patch #462787 (Home page for unpriviliged user) thanks to Piotr Roszatycki . * lang/italian.inc.php3: updated thanks to Pietro Danesi. + * defines.inc.php3: php3 does not allow to use TRUE or FALSE constants with + the 'define()' function. 2001-09-18 Loïc Chapeaux * tbl_create.php3; tbl_addfield.php3: fixed a bug with "auto_increment" diff --git a/libraries/defines.lib.php3 b/libraries/defines.lib.php3 index 284dadf6d..411bb37ae 100644 --- a/libraries/defines.lib.php3 +++ b/libraries/defines.lib.php3 @@ -35,16 +35,16 @@ if (!defined('PHP_INT_VERSION')) { define('PHP_INT_VERSION', (int)sprintf('%d%02d%02d', $match[1], $match[2], $match[3])); unset($match); } else { - define('PHP_INT_VERSION', FALSE); + define('PHP_INT_VERSION', 0); } } // Whether the os php is running on is windows or not if (!defined('PMA_WINDOWS')) { if (defined('PHP_OS') && eregi('win', PHP_OS)) { - define('PMA_WINDOWS', TRUE); + define('PMA_WINDOWS', 1); } else { - define('PMA_WINDOWS', FALSE); + define('PMA_WINDOWS', 0); } }