From: Scott MacVicar Date: Tue, 12 Jun 2007 14:08:16 +0000 (+0000) Subject: Display PCRE ini entries as part of module info X-Git-Tag: php-5.2.4RC1~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2caf386764f66e412d995eefb34be2d100ed4dad;p=php Display PCRE ini entries as part of module info --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 38051bc3e1..04603e9676 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -126,6 +126,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(); } /* }}} */