]> granicus.if.org Git - php/commitdiff
Fully print array() in phpinfo().
authorIlia Alshanetsky <iliaa@php.net>
Sun, 11 Jun 2006 16:27:16 +0000 (16:27 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 11 Jun 2006 16:27:16 +0000 (16:27 +0000)
ext/standard/info.c

index 03cf0260df8af55a46bfb10a0e5ddd023432cc9e..e105e0d9e4a443b46b7c6cd8afce93ba0d2cadec 100644 (file)
@@ -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);