From: Andrei Zmievski Date: Thu, 24 Feb 2000 15:16:07 +0000 (+0000) Subject: Turn on y2k_compliance by default. X-Git-Tag: PHP-4.0-RC1~433 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5cc1929eba4e25545184d395e9c317270c3ca4d;p=php Turn on y2k_compliance by default. --- diff --git a/main/main.c b/main/main.c index 3ff2e98d6d..8732d01a1b 100644 --- a/main/main.c +++ b/main/main.c @@ -204,7 +204,7 @@ PHP_INI_BEGIN() STD_PHP_INI_ENTRY("auto_prepend_file", NULL, PHP_INI_ALL, OnUpdateString, auto_prepend_file, php_core_globals, core_globals) STD_PHP_INI_ENTRY("auto_append_file", NULL, PHP_INI_ALL, OnUpdateString, auto_append_file, php_core_globals, core_globals) - STD_PHP_INI_BOOLEAN("y2k_compliance", "0", PHP_INI_ALL, OnUpdateBool, y2k_compliance, php_core_globals, core_globals) + STD_PHP_INI_BOOLEAN("y2k_compliance", "1", PHP_INI_ALL, OnUpdateBool, y2k_compliance, php_core_globals, core_globals) STD_PHP_INI_ENTRY("doc_root", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, doc_root, php_core_globals, core_globals) STD_PHP_INI_ENTRY("user_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, user_dir, php_core_globals, core_globals)