From: Date: Thu, 24 Jun 2004 00:32:21 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.0.0~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca14c9b1af0fa9784b6afca0673bc08ff9076f47;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index a2248540b9..20de876f19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,62 @@ +2004-06-23 Sara Golemon + + * (PHP_4_3) + NEWS: + BFN and order fix + + * ZendEngine2/zend_execute.c: + BugFix #28879 Inconsistent behavior between explicit and implicit array + creation. + + Changes: + + Throw E_WARNING "Illegal offset type" when explicitly creating + array elements with objects, arrays, or resorces as indexes. + This matches implicit creation w/ obj/arr indices. + + Throw E_WARNING "Resource ID#%ld used as offset, casting to integer (%ld)" + when implicitly creating array with resource as index. (BC) + +2004-06-23 Moriyoshi Koizumi + + * (PHP_4_3) + ext/mbstring/tests/bug26639.phpt: + - Modify test case for wider coverage. + + * (PHP_4_3) + ext/mbstring/mbstring.c: + - Fix buf #28466 (mbstring_convert_variables() problem). + +2004-06-23 Georg Richter + + * ext/mysqli/mysqli.c + ext/mysqli/mysqli_fe.c: + added php_mysqli_construct_get to support __construct in extended classes + +2004-06-23 Sascha Schumann + + * (PHP_4_3) + ext/session/session.c: + - fix logic. if the client already sent us the cookie, we don't + need to send it again. if the id has been changed, we need to + update the client side. + +2004-06-23 Uwe Schindler + + * (PHP_4_3) + NEWS + sapi/nsapi/nsapi.c + sapi/nsapi/nsapi.c: + Addendum to bug #28878: change ini keys as PHP_INI_SYSTEM + Also: Adding "bucket" parameter to non-ini-keys, Elemination of double + CONTENT_TYPE/_LENGTH environment variables + +2004-06-23 Dmitry Stogov + + * php.ini-dist + php.ini-recommended: + Added SOAP configuration directives + 2004-06-22 Andrei Zmievski * NEWS diff --git a/Zend/ChangeLog b/Zend/ChangeLog index be0c5efd07..2473cfa624 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,18 @@ +2004-06-23 Sara Golemon + + * zend_execute.c: + BugFix #28879 Inconsistent behavior between explicit and implicit array + creation. + + Changes: + + Throw E_WARNING "Illegal offset type" when explicitly creating + array elements with objects, arrays, or resorces as indexes. + This matches implicit creation w/ obj/arr indices. + + Throw E_WARNING "Resource ID#%ld used as offset, casting to integer (%ld)" + when implicitly creating array with resource as index. (BC) + 2004-06-19 Sebastian Bergmann * zend_reflection_api.c: