helly Sun Aug 14 11:19:45 2005 EDT
Modified files:
/ZendEngine2 zend.c
Log:
- Treat class_name in the exact same manner as prop_name before
http://cvs.php.net/diff.php/ZendEngine2/zend.c?r1=1.311&r2=1.312&ty=u
Index: ZendEngine2/zend.c
diff -u ZendEngine2/zend.c:1.311 ZendEngine2/zend.c:1.312
--- ZendEngine2/zend.c:1.311 Fri Aug 12 07:29:24 2005
+++ ZendEngine2/zend.c Sun Aug 14 11:19:45 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend.c,v 1.311 2005/08/12 11:29:24 dmitry Exp $ */
+/* $Id: zend.c,v 1.312 2005/08/14 15:19:45 helly Exp $ */
#include "zend.h"
#include "zend_extensions.h"
@@ -273,7 +273,7 @@
if (class_name[0]=='*') {
ZEND_PUTS(":protected");
} else {
- ZEND_PUTS(":private");
+
zend_printf(":%r:private", class_name);
}
}
} else {
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|