1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

ChangeLog update

This commit is contained in:
2004-10-27 00:36:13 +00:00
parent 6a16f3eb1d
commit dc8078b191
2 changed files with 70 additions and 0 deletions
+46
View File
@@ -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)
+24
View 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: