diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-06-11 16:27:16 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-06-11 16:27:16 +0000 |
commit | f876b800a285e098f5fe0363bda3327c8463bd75 (patch) | |
tree | 4c6249b0a537e53e8ff9728b880547e681d4cce4 | |
parent | 3104233019f5414317ea0275ca8ffeac537e20ee (diff) | |
download | php-git-f876b800a285e098f5fe0363bda3327c8463bd75.tar.gz |
Fully print array() in phpinfo().
-rw-r--r-- | ext/standard/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
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("<pre>"); - 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("</pre>"); } else { zend_print_zval_r(*tmp, 0 TSRMLS_CC); |