changelog Tue Oct 26 20:36:08 2004 EDT
Modified files:
/php-src ChangeLog
Log:
ChangeLog update
http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1786&r2=1.1787&ty=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.1786 php-src/ChangeLog:1.1787
--- php-src/ChangeLog:1.1786 Mon Oct 25 20:48:48 2004
+++ php-src/ChangeLog Tue Oct 26 20:36:07 2004
@@ -1,3 +1,49 @@
+2004-10-26 Andrey Hristov <[EMAIL PROTECTED]>
+
+ * (PHP_5_0)
+ NEWS:
+ news entry
+
+2004-10-26 Andi Gutmans <[EMAIL PROTECTED]>
+
+ * 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 <[EMAIL PROTECTED]>
+
+ * (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 <[EMAIL PROTECTED]>
+
+ * (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 <[EMAIL PROTECTED]>
* (PHP_5_0)
@@ -11857,7 +11903,7 @@
2004-03-18 Pierre-Alain Joye <[EMAIL PROTECTED]>
* ext/gd/tests/bug27582_2.phpt:
- - Fix the test description and $Id: ChangeLog,v 1.1786 2004/10/26 00:48:48
changelog Exp $
+ - Fix the test description and $Id: ChangeLog,v 1.1787 2004/10/27 00:36:07
changelog Exp $
2004-03-18 Derick Rethans <[EMAIL PROTECTED]>