From 428aec2a9e2c714622ae227896b4310e045dacb9 Mon Sep 17 00:00:00 2001 From: Scott MacVicar Date: Tue, 12 Jun 2007 14:07:42 +0000 Subject: [PATCH] Display PCRE ini entries as part of module info --- ext/pcre/php_pcre.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index b5d13bf0ad..2c828f7646 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -138,6 +138,8 @@ static PHP_MINFO_FUNCTION(pcre) php_info_print_table_row(2, "PCRE (Perl Compatible Regular Expressions) Support", "enabled" ); php_info_print_table_row(2, "PCRE Library Version", pcre_version() ); php_info_print_table_end(); + + DISPLAY_INI_ENTRIES(); } /* }}} */ -- 2.50.1