+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)
+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: