changelog Tue Oct 26 20:36:14 2004 EDT
Modified files: /ZendEngine2 ChangeLog Log: ChangeLog update http://cvs.php.net/diff.php/ZendEngine2/ChangeLog?r1=1.576&r2=1.577&ty=u Index: ZendEngine2/ChangeLog diff -u ZendEngine2/ChangeLog:1.576 ZendEngine2/ChangeLog:1.577 --- ZendEngine2/ChangeLog:1.576 Sat Oct 23 20:36:26 2004 +++ ZendEngine2/ChangeLog Tue Oct 26 20:36:13 2004 @@ -1,3 +1,27 @@ +2004-10-26 Andi Gutmans <[EMAIL PROTECTED]> + + * 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) + 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 <[EMAIL PROTECTED]> * zend_vm_execute.h: @@ -6092,7 +6116,7 @@ 2003-06-10 Jani Taskinen <[EMAIL PROTECTED]> * zend_multiply.h: - - Missing $Id: ChangeLog,v 1.576 2004/10/24 00:36:26 changelog Exp $ tag + - Missing $Id: ChangeLog,v 1.577 2004/10/27 00:36:13 changelog Exp $ tag 2003-06-10 James Cox <[EMAIL PROTECTED]> @@ -7816,7 +7840,7 @@ zend_types.h zend_variables.c zend_variables.h: - - Added some missing CVS $Id: ChangeLog,v 1.576 2004/10/24 00:36:26 changelog Exp $ tags, headers and footers. + - Added some missing CVS $Id: ChangeLog,v 1.577 2004/10/27 00:36:13 changelog Exp $ tags, headers and footers. 2003-01-30 Ilia Alshanetsky <[EMAIL PROTECTED]>