iliaa Sat Mar 6 14:30:36 2004 EDT
Modified files: (Branch: PHP_4_3)
/php-src NEWS
/php-src/ext/mbstring mbstring.c
Log:
MFH: Fixed bug #27421 (mbstring.func_overload should be system ini setting)
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.584&r2=1.1247.2.585&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.584 php-src/NEWS:1.1247.2.585
--- php-src/NEWS:1.1247.2.584 Sat Mar 6 14:06:11 2004
+++ php-src/NEWS Sat Mar 6 14:30:34 2004
@@ -9,6 +9,8 @@
(Ilia, naish at klanen dot net)
- Fixed bug #27443 (defined() returns wrong type). (Derick)
- Fixed bug #27437 (wrong freetype include inside GD library). (Ilia)
+- Fixed bug #27421 (mbstring.func_overload should be system ini setting).
+ (Ilia)
- Fixed bug #27384 (unpack() misbehaves with 1 char string). (GeorgeS)
- Fixed bug #27383 (Potential crash inside fopen_wrapper, while parsing
response code). (Ilia)
http://cvs.php.net/diff.php/php-src/ext/mbstring/mbstring.c?r1=1.142.2.42&r2=1.142.2.43&ty=u
Index: php-src/ext/mbstring/mbstring.c
diff -u php-src/ext/mbstring/mbstring.c:1.142.2.42
php-src/ext/mbstring/mbstring.c:1.142.2.43
--- php-src/ext/mbstring/mbstring.c:1.142.2.42 Thu Dec 18 04:52:49 2003
+++ php-src/ext/mbstring/mbstring.c Sat Mar 6 14:30:35 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: mbstring.c,v 1.142.2.42 2003/12/18 09:52:49 moriyoshi Exp $ */
+/* $Id: mbstring.c,v 1.142.2.43 2004/03/06 19:30:35 iliaa Exp $ */
/*
* PHP4 Multibyte String module "mbstring"
@@ -792,8 +792,7 @@
PHP_INI_ENTRY("mbstring.script_encoding", NULL, PHP_INI_ALL,
OnUpdate_mbstring_script_encoding)
#endif /* ZEND_MULTIBYTE */
PHP_INI_ENTRY("mbstring.substitute_character", NULL, PHP_INI_ALL,
OnUpdate_mbstring_substitute_character)
- STD_PHP_INI_ENTRY("mbstring.func_overload", "0", PHP_INI_SYSTEM |
- PHP_INI_PERDIR, OnUpdateInt, func_overload, zend_mbstring_globals,
mbstring_globals)
+ STD_PHP_INI_ENTRY("mbstring.func_overload", "0", PHP_INI_SYSTEM, OnUpdateInt,
func_overload, zend_mbstring_globals, mbstring_globals)
STD_PHP_INI_BOOLEAN("mbstring.encoding_translation", "0",
PHP_INI_SYSTEM | PHP_INI_PERDIR, OnUpdate_mbstring_encoding_translation,
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php