From: Ilia Alshanetsky Date: Sun, 11 Jun 2006 16:27:16 +0000 (+0000) Subject: Fully print array() in phpinfo(). X-Git-Tag: php-5.2.0RC1~330 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f876b800a285e098f5fe0363bda3327c8463bd75;p=php Fully print array() in phpinfo(). --- diff --git a/ext/standard/info.c b/ext/standard/info.c index 03cf0260df..e105e0d9e4 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -154,7 +154,7 @@ static void php_print_gpcse_array(char *name, uint name_length TSRMLS_DC) if (Z_TYPE_PP(tmp) == IS_ARRAY) { if (!sapi_module.phpinfo_as_text) { PUTS("
");
-					zend_print_zval_ex((zend_write_func_t) php_info_write_wrapper, *tmp, 0);
+					zend_print_zval_r_ex((zend_write_func_t) php_info_write_wrapper, *tmp, 0);
 					PUTS("
"); } else { zend_print_zval_r(*tmp, 0 TSRMLS_CC);