From: Dmitry Stogov Date: Mon, 15 Aug 2005 07:12:52 +0000 (+0000) Subject: Fixed another print_r() bug X-Git-Tag: PRE_NEW_OCI8_EXTENSION~257 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fceb6086b2a8b38079b861c1a2dabe5dfbe7be8d;p=php Fixed another print_r() bug --- diff --git a/Zend/zend.c b/Zend/zend.c index c59c85e022..35d4f43174 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -276,7 +276,7 @@ str_type: 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);