diff options
author | Scott MacVicar <scottmac@php.net> | 2007-06-12 14:08:16 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2007-06-12 14:08:16 +0000 |
commit | 2caf386764f66e412d995eefb34be2d100ed4dad (patch) | |
tree | b0df3f0ff27ee2b7ebc8417aa6e36a633f48d9c1 /ext/pcre/php_pcre.c | |
parent | 34d1d2eed0898aa608dc4800a3c115c9d0020921 (diff) | |
download | php-git-2caf386764f66e412d995eefb34be2d100ed4dad.tar.gz |
Display PCRE ini entries as part of module info
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } /* }}} */ |