From: Date: Tue, 28 Mar 2006 06:31:49 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_3~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25a73301a54fa5d9f88f2dcd2842e31f9b87ed51;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 20bab018e5..498d7f48e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,165 @@ +2006-03-27 Ilia Alshanetsky + + * (PHP_4_4) + ext/standard/file.c: + MFH: Check 2nd parameter of tempnam() against path components. + + * ext/standard/file.c: + MFB51: Check 2nd parameter of tempnam() against path components. + + * (PHP_5_1) + NEWS + ext/standard/file.c: + Check 2nd parameter of tempnam() against path components. + +2006-03-27 Andrei Zmievski + + * ext/standard/string.c: + Fix UErrorCode check. + + * ext/standard/var.c: + Typo. + +2006-03-27 Antony Dovgal + + * ZendEngine2/zend.c: + MF51: fix #36878 (error messages are printed even though an exception has + been thrown) + + * (PHP_5_1) + NEWS + ZendEngine2/zend.c: + fix #36878 (error messages are printed even though an exception has been + thrown) + +2006-03-27 Andrei Zmievski + + * ext/standard/var.c: + Make a UTODO note. + + * ext/standard/var.c: + Proto updates. + + * unicode-todo.txt: + -** empty log message *** + + * ZendEngine2/zend_unicode.c: + Add UTODO. + + * ZendEngine2/zend_compile.c: + Mark with UTODO instead of FIXME. + +2006-03-27 Seiji Masugata + + * ext/mbstring/mbstring.c + ext/mbstring/mbstring.h: + added mb_list_mime_names( ). + +2006-03-27 Dmitry Stogov + + * ext/standard/tests/strings/strtr3.phpt: + Test for strtr() with non-ascii encoding + + * ZendEngine2/tests/bug30791.phpt + ext/session/tests/003.phpt + ext/session/tests/009.phpt + ext/simplexml/tests/033.phpt + tests/classes/bug26737.phpt: + Fixed test + + * ext/standard/incomplete_class.c + ext/standard/php_incomplete_class.h + ext/standard/var.c + ext/standard/var_unserializer.c + ext/standard/var_unserializer.c + ext/standard/var_unserializer.re + ext/standard/var_unserializer.re + ext/standard/tests/serialize/001.phpt + ext/standard/tests/serialize/002.phpt + ext/standard/tests/serialize/005.phpt + ext/standard/tests/serialize/006.phpt + ext/standard/tests/serialize/bug14293.phpt + ext/standard/tests/serialize/bug21957.phpt + ext/standard/tests/serialize/bug26762.phpt + ext/standard/tests/serialize/bug27469.phpt + ext/standard/tests/serialize/bug28325.phpt + ext/standard/tests/serialize/bug31402.phpt: + Unicode support + + * ext/standard/tests/strings/strtr.phpt: + Fixed testFixed testFixed testFixed testFixed testFixed testFixed testFixed + testFixed test + + * ZendEngine2/zend_compile.c: + Fixed bug during function/class declaration in unicode mode + + * tests/classes/serialize_001.phpt: + Fixed test file (test still fail) + +2006-03-27 Antony Dovgal + + * main/output.c: + MF51: fix #36869 (memory leak in output buffering when using chunked + output) + + * (PHP_5_1) + NEWS + main/output.c: + fix #36869 (memory leak in output buffering when using chunked output) + +2006-03-27 Dmitry Stogov + + * ZendEngine2/zend_compile.c + ZendEngine2/zend_compile.c: + Fixed meory leak in case of unknown pragma + + * NEWS + ZendEngine2/zend_unicode.c: + Better but incomplete fix for bug #36840 + + * ZendEngine2/zend_exceptions.c + ZendEngine2/zend_unicode.c + ZendEngine2/zend_unicode.h + ext/standard/string.c: + Fixed ZTS build + +2006-03-27 Andrei Zmievski + + * acinclude.m4 + acinclude.m4: + MFB + + * (PHP_5_1) + acinclude.m4: + On Mac OSX, our extensions are actually "bundles" and should not have + .dylib extension. Read this: + + http://www.sm.luth.se/~alapaa/file_fetch/unixcdbookshelf/mac/ch05_03.htm + + * ZendEngine2/zend_exceptions.c: + Fix a case where we could have an encoding conversion exception thrown + while building exception trace args! + + * ZendEngine2/zend_exceptions.c: + Use (unsigned char) to make sure that only the control chars are + replaced with '?'; + + * ZendEngine2/zend_unicode.c: + Skip BOM for UTF-16/32 converters when setting subst char. + +2006-03-27 Yasuo Ohgaki + + * ext/pgsql/pgsql.c + ext/pgsql/pgsql.c: + remove pg_execute() E_WARNING error when query plan is not defined + +2006-03-27 Andrei Zmievski + + * ZendEngine2/zend_API.c: + Some functions may want to accept only Unicode or binary strings, + without having auto-conversion from the other string type. Add 'U' and + 'S' specifiers for this. Also, remove traces of 'native' strings. + 2006-03-26 Andrei Zmievski * unicode-todo.txt diff --git a/Zend/ChangeLog b/Zend/ChangeLog index e03f5b00cf..d23f7a9c7b 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,60 @@ +2006-03-27 Antony Dovgal + + * zend.c: + MF51: fix #36878 (error messages are printed even though an exception has + been thrown) + + * (PHP_5_1) + zend.c: + fix #36878 (error messages are printed even though an exception has been + thrown) + +2006-03-27 Andrei Zmievski + + * zend_unicode.c: + Add UTODO. + + * zend_compile.c: + Mark with UTODO instead of FIXME. + +2006-03-27 Dmitry Stogov + + * tests/bug30791.phpt: + Fixed test + + * zend_compile.c: + Fixed bug during function/class declaration in unicode mode + + * zend_compile.c + zend_compile.c: + Fixed meory leak in case of unknown pragma + + * zend_unicode.c: + Better but incomplete fix for bug #36840 + + * zend_exceptions.c + zend_unicode.c + zend_unicode.h: + Fixed ZTS build + +2006-03-27 Andrei Zmievski + + * zend_exceptions.c: + Fix a case where we could have an encoding conversion exception thrown + while building exception trace args! + + * zend_exceptions.c: + Use (unsigned char) to make sure that only the control chars are + replaced with '?'; + + * zend_unicode.c: + Skip BOM for UTF-16/32 converters when setting subst char. + + * zend_API.c: + Some functions may want to accept only Unicode or binary strings, + without having auto-conversion from the other string type. Add 'U' and + 'S' specifiers for this. Also, remove traces of 'native' strings. + 2006-03-26 Andrei Zmievski * zend.c