From: Hannes Magnusson Date: Fri, 12 Dec 2008 13:05:58 +0000 (+0000) Subject: Fixed bug#46847 (phpinfo() is missing some settings.) X-Git-Tag: php-5.4.0alpha1~191^2~4822 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0dcb08ba87302eae3343ac92d2206cc04b9a3da;p=php Fixed bug#46847 (phpinfo() is missing some settings.) --- diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 63c8663bec..64800b1df5 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -182,6 +182,7 @@ PHP_MINFO_FUNCTION(bcmath) php_info_print_table_start(); php_info_print_table_row(2, "BCMath support", "enabled"); php_info_print_table_end(); + DISPLAY_INI_ENTRIES(); } /* }}} */ diff --git a/ext/dba/dba.c b/ext/dba/dba.c index 099e205d58..862b66b349 100644 --- a/ext/dba/dba.c +++ b/ext/dba/dba.c @@ -524,6 +524,7 @@ PHP_MINFO_FUNCTION(dba) php_info_print_table_row(2, "Supported handlers", "none"); } php_info_print_table_end(); + DISPLAY_INI_ENTRIES(); } /* }}} */ diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 0e90c33f01..28a1a6e8a1 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -150,6 +150,7 @@ PHP_MINFO_FUNCTION(exif) php_info_print_table_row(2, "Supported EXIF Version", "0220"); php_info_print_table_row(2, "Supported filetypes", "JPEG,TIFF"); php_info_print_table_end(); + DISPLAY_INI_ENTRIES(); } /* }}} */ diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 95ba2c76aa..906df451de 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1054,6 +1054,7 @@ PHP_MSHUTDOWN_FUNCTION(gd) #if HAVE_GD_FONTMUTEX && HAVE_LIBFREETYPE gdFontCacheMutexShutdown(); #endif + UNREGISTER_INI_ENTRIES(); return SUCCESS; } #endif @@ -1246,6 +1247,7 @@ PHP_MINFO_FUNCTION(gd) php_info_print_table_row(2, "JIS-mapped Japanese Font Support", "enabled"); #endif php_info_print_table_end(); + DISPLAY_INI_ENTRIES(); } /* }}} */ diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index a6b1ef2e0d..d936c03258 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -271,6 +271,7 @@ PHP_MINFO_FUNCTION(ldap) #endif php_info_print_table_end(); + DISPLAY_INI_ENTRIES(); } /* }}} */