From: Date: Wed, 27 Oct 2004 00:36:13 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_2~826 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc8078b191be0fe64d0f58bbf2117f720ecad3ab;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index a39e3eca2f..a91b3983e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,49 @@ +2004-10-26 Andrey Hristov + + * (PHP_5_0) + NEWS: + news entry + +2004-10-26 Andi Gutmans + + * ZendEngine2/zend_builtin_functions.c: + - Patch from Andrey Hristov: + I have cooked a small patch which allows is_subclass_of() the accept + not only an object as first parameter but a string as well. When string + is passed the function checks whether the class specified is subclass of + the second parameter + class a{} + class b{} extends a{} + is_subclass_of("a", "a") //false + is_subclass_of("b", "a") //true + currently only objects are allowed as first parameter + +2004-10-26 Ilia Alshanetsky + + * (PHP_5_0) + NEWS + ZendEngine2/zend_operators.c: + MFH: Fixed bug #30572 (crash when comparing SimpleXML attribute to a + boolean). + + * ZendEngine2/zend_operators.c: + Fixed bug #30228 (crash when comparing SimpleXML attribute to a boolean). + +2004-10-26 Wez Furlong + + * (PHP_4_3) + NEWS + NEWS: + BFN + + * ext/openssl/openssl.c + ext/openssl/openssl.c + ext/openssl/openssl.c: + Fix for Bug #29418 (double free when openssl_csr_new fails). + Also hook up MSHUTDOWN function which appears to have never been enabled. + + Patch by Kamesh Jayachandran + 2004-10-25 Greg Beaver * (PHP_5_0) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 546752cb96..091188d554 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,27 @@ +2004-10-26 Andi Gutmans + + * zend_builtin_functions.c: + - Patch from Andrey Hristov: + I have cooked a small patch which allows is_subclass_of() the accept + not only an object as first parameter but a string as well. When string + is passed the function checks whether the class specified is subclass of + the second parameter + class a{} + class b{} extends a{} + is_subclass_of("a", "a") //false + is_subclass_of("b", "a") //true + currently only objects are allowed as first parameter + +2004-10-26 Ilia Alshanetsky + + * (PHP_5_0) + zend_operators.c: + MFH: Fixed bug #30572 (crash when comparing SimpleXML attribute to a + boolean). + + * zend_operators.c: + Fixed bug #30228 (crash when comparing SimpleXML attribute to a boolean). + 2004-10-23 Andi Gutmans * zend_vm_execute.h: