sniper Sat Jul 22 15:41:42 2006 UTC
Modified files: (Branch: PHP_5_2)
/php-src NEWS
/ZendEngine2 zend_API.c
Log:
MFH:- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be
called Foo)
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.135&r2=1.2027.2.547.2.136&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.135 php-src/NEWS:1.2027.2.547.2.136
--- php-src/NEWS:1.2027.2.547.2.135 Thu Jul 20 22:21:27 2006
+++ php-src/NEWS Sat Jul 22 15:41:41 2006
@@ -101,6 +101,8 @@
- Fixed memory leaks in openssl streams context options. (Pierre)
- Fixed handling of extremely long paths inside tempnam() function. (Ilia)
+- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be
+ called Foo). (Jani)
- Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus)
- Fixed bug #38086 (stream_copy_to_stream() returns 0 when maxlen is bigger
than the actual length). (Tony)
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_API.c?r1=1.296.2.27.2.20&r2=1.296.2.27.2.21&diff_format=u
Index: ZendEngine2/zend_API.c
diff -u ZendEngine2/zend_API.c:1.296.2.27.2.20
ZendEngine2/zend_API.c:1.296.2.27.2.21
--- ZendEngine2/zend_API.c:1.296.2.27.2.20 Fri Jul 21 08:39:30 2006
+++ ZendEngine2/zend_API.c Sat Jul 22 15:41:42 2006
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_API.c,v 1.296.2.27.2.20 2006/07/21 08:39:30 dmitry Exp $ */
+/* $Id: zend_API.c,v 1.296.2.27.2.21 2006/07/22 15:41:42 sniper Exp $ */
#include "zend.h"
#include "zend_execute.h"
@@ -2104,6 +2104,7 @@
}
INIT_CLASS_ENTRY((*disabled_class), class_name, disabled_class_new);
disabled_class->create_object = display_disabled_class;
+ disabled_class->name_length = class_name_length;
zend_register_internal_class(disabled_class TSRMLS_CC);
return 1;
}
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|