moriyoshi Tue Feb 22 05:02:15 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src NEWS
/php-src/ext/mbstring/libmbfl/filters html_entities.c
Log:
- MFH: fix bug #32063 (mb_convert_encoding() ignores named entity 'alpha')
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.256&r2=1.1760.2.257&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.256 php-src/NEWS:1.1760.2.257
--- php-src/NEWS:1.1760.2.256 Mon Feb 21 19:24:51 2005
+++ php-src/NEWS Tue Feb 22 05:02:13 2005
@@ -8,6 +8,11 @@
- Changed phpize not to require libtool. (Jani)
- Updated bundled oniguruma library (used for multibyte regular expression)
to 3.7.0. (Moriyoshi)
+- Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi)
+ Fixed bugs:
+ . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes)
+ . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
+ . bug #30573 (compiler warnings in libmbfl due to invalid type cast)
- Fixed a bug in mysql_affected_rows and mysql_stmt_affected_rows when the
api function returns -1 (Georg)
- Fixed several leaks in ext/browscap and sapi/embed. (Andrei)
@@ -25,8 +30,6 @@
- Fixed bug #31980 (Unicode exif data not available on Windows). (Edin)
- Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
with NULL values). (Daniel Convissor)
-- Fixed bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes).
- (Moriyoshi)
- Fixed bug #31878 (Segmentation fault using clone keyword on nodes). (Rob)
- Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani)
- Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string).
@@ -105,8 +108,6 @@
- Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
- Fixed bug #30725 (PHP segfaults when an exception is thrown in getIterator()
within foreach). (Marcus)
-- Fixed bug #30573 (compiler warnings in libmbfl due to invalid type cast).
- (Moriyoshi)
- Fixed bug #30549 (incorrect character translations for some ISO8859
charsets). (Moriyoshi)
- Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
http://cvs.php.net/diff.php/php-src/ext/mbstring/libmbfl/filters/html_entities.c?r1=1.3&r2=1.3.2.1&ty=u
Index: php-src/ext/mbstring/libmbfl/filters/html_entities.c
diff -u php-src/ext/mbstring/libmbfl/filters/html_entities.c:1.3
php-src/ext/mbstring/libmbfl/filters/html_entities.c:1.3.2.1
--- php-src/ext/mbstring/libmbfl/filters/html_entities.c:1.3 Wed Feb 4
02:24:06 2004
+++ php-src/ext/mbstring/libmbfl/filters/html_entities.c Tue Feb 22
05:02:14 2005
@@ -167,6 +167,7 @@
{"Chi", 935},
{"Psi", 936},
{"Omega", 937},
+ {"alpha", 945},
{"beta", 946},
{"gamma", 947},
{"delta", 948},
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php