From cc196f5b54b99db14609fd986203c98a91bf3297 Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 26 Nov 2001 22:56:36 +0000 Subject: [PATCH] Show the registered ini entry in phpinfo() --- ext/zlib/zlib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 54f5128894..ac87da5026 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -247,6 +247,8 @@ PHP_MINFO_FUNCTION(zlib) php_info_print_table_row(2, "Compiled Version", ZLIB_VERSION ); php_info_print_table_row(2, "Linked Version", (char *)zlibVersion() ); php_info_print_table_end(); + + DISPLAY_INI_ENTRIES(); } /* }}} */ -- 2.50.1