From: foobar Date: Mon, 26 Nov 2001 22:56:36 +0000 (+0000) Subject: Show the registered ini entry in phpinfo() X-Git-Tag: ChangeLog~234 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc196f5b54b99db14609fd986203c98a91bf3297;p=php Show the registered ini entry in phpinfo() --- 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(); } /* }}} */