Hello Dmitry,
what does this fix? The names are stored in the same value and thus should
either be both unicode or native strings. Did you find something else?
marcus
Monday, August 15, 2005, 9:12:55 AM, you wrote:
> dmitry Mon Aug 15 03:12:55 2005 EDT
> Modified files:
> /ZendEngine2 zend.c
> Log:
> Fixed another print_r() bug
> http://cvs.php.net/diff.php/ZendEngine2/zend.c?r1=1.314&r2=1.315&ty=u
> Index: ZendEngine2/zend.c
> diff -u ZendEngine2/zend.c:1.314 ZendEngine2/zend.c:1.315
> --- ZendEngine2/zend.c:1.314 Mon Aug 15 02:34:20 2005
> +++ ZendEngine2/zend.c Mon Aug 15 03:12:52 2005
> @@ -17,7 +17,7 @@
>
> +----------------------------------------------------------------------+
> */
> -/* $Id: zend.c,v 1.314 2005/08/15 06:34:20 dmitry Exp $ */
> +/* $Id: zend.c,v 1.315 2005/08/15 07:12:52 dmitry Exp $ */
> #include "zend.h"
> #include "zend_extensions.h"
> @@ -276,7 +276,7 @@
> if (class_name[0]=='*') {
>
> zend_printf("%R:protected", ztype, prop_name);
> } else {
> -
> zend_printf("%R:%R:private", ztype, prop_name, key_type, class_name);
> +
> zend_printf("%R:%v:private", ztype, prop_name, class_name);
> }
> } else {
> zend_printf("%R", ztype,
> prop_name);
Best regards,
Marcus
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|