]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Wed, 27 Oct 2004 00:36:13 +0000 (00:36 +0000)
committer <changelog@php.net> <>
Wed, 27 Oct 2004 00:36:13 +0000 (00:36 +0000)
ChangeLog
Zend/ChangeLog

index a39e3eca2f6ffcf8391ef3d912476ba53564d5a3..a91b3983e4dd5b37161ca5dd95ecf7a20f4879da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,49 @@
+2004-10-26  Andrey Hristov  <php@hristov.com>
+
+    * (PHP_5_0)
+      NEWS:
+      news entry
+
+2004-10-26  Andi Gutmans  <andi@zend.com>
+
+    * 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  <ilia@prohost.org>
+
+    * (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  <wez.php@thebrainroom.net>
+
+    * (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  <greg@chiaraquartet.net>
 
     * (PHP_5_0)
index 546752cb966e4179703c755c7593daecbf177614..091188d554abe06c83c8b81bfcf792525f5cf7a0 100644 (file)
@@ -1,3 +1,27 @@
+2004-10-26  Andi Gutmans  <andi@zend.com>
+
+    * 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  <ilia@prohost.org>
+
+    * (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  <andi@zend.com>
 
     * zend_vm_execute.h: