From: Marcus Boerger Date: Mon, 13 Feb 2006 09:23:13 +0000 (+0000) Subject: - Fix ini unicode_semantics (patch by Brion Vibber) X-Git-Tag: RELEASE_1_2~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a4b6845dc87e391d37e76391b327fba06db6aaa;p=php - Fix ini unicode_semantics (patch by Brion Vibber) --- diff --git a/Zend/zend.c b/Zend/zend.c index 8b8a10c3d6..f52942ab14 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -197,7 +197,7 @@ ZEND_INI_BEGIN() STD_ZEND_INI_BOOLEAN("zend.ze1_compatibility_mode", "0", ZEND_INI_ALL, OnUpdateBool, ze1_compatibility_mode, zend_executor_globals, executor_globals) /* Unicode .ini entries */ - STD_ZEND_INI_ENTRY("unicode_semantics", "off", ZEND_INI_SYSTEM, OnUpdateBool, unicode, zend_unicode_globals, unicode_globals) + STD_ZEND_INI_BOOLEAN("unicode_semantics", "0", ZEND_INI_SYSTEM, OnUpdateBool, unicode, zend_unicode_globals, unicode_globals) STD_ZEND_INI_ENTRY("unicode.fallback_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, fallback_encoding_conv, zend_unicode_globals, unicode_globals) STD_ZEND_INI_ENTRY("unicode.runtime_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, runtime_encoding_conv, zend_unicode_globals, unicode_globals) STD_ZEND_INI_ENTRY("unicode.script_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, script_encoding_conv, zend_unicode_globals, unicode_globals)