From: Andrei Zmievski Date: Tue, 19 Sep 2006 20:44:37 +0000 (+0000) Subject: Use internal converter name to speed up instantiation. X-Git-Tag: RELEASE_1_0_0RC1~1617 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1efe21658593ed9b3dbcbe05ebf16be90e0f494a;p=php Use internal converter name to speed up instantiation. --- diff --git a/Zend/zend.c b/Zend/zend.c index 079bea13eb..057d52c910 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -181,7 +181,7 @@ ZEND_INI_BEGIN() STD_ZEND_INI_ENTRY("unicode.script_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, script_encoding_conv, zend_unicode_globals, unicode_globals) STD_ZEND_INI_ENTRY("unicode.http_input_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, http_input_encoding_conv, zend_unicode_globals, unicode_globals) STD_ZEND_INI_ENTRY("unicode.filesystem_encoding", NULL, ZEND_INI_ALL, OnUpdateEncoding, filesystem_encoding_conv, zend_unicode_globals, unicode_globals) - STD_ZEND_INI_ENTRY("unicode.stream_encoding", "utf8", ZEND_INI_ALL, OnUpdateStringUnempty, stream_encoding, zend_unicode_globals, unicode_globals) + STD_ZEND_INI_ENTRY("unicode.stream_encoding", "UTF-8", ZEND_INI_ALL, OnUpdateStringUnempty, stream_encoding, zend_unicode_globals, unicode_globals) ZEND_INI_END()