1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 07:58:20 +02:00

Fixed another print_r() bug

This commit is contained in:
Dmitry Stogov
2005-08-15 07:12:52 +00:00
parent feff569e96
commit fceb6086b2
+1 -1
View File
@@ -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);