]> granicus.if.org Git - php/commitdiff
Fixed bug#46847 (phpinfo() is missing some settings.)
authorHannes Magnusson <bjori@php.net>
Fri, 12 Dec 2008 13:07:28 +0000 (13:07 +0000)
committerHannes Magnusson <bjori@php.net>
Fri, 12 Dec 2008 13:07:28 +0000 (13:07 +0000)
NEWS
ext/bcmath/bcmath.c
ext/dba/dba.c
ext/exif/exif.c
ext/gd/gd.c
ext/ldap/ldap.c

diff --git a/NEWS b/NEWS
index eeeac4c5f0d27cc976fc794ed10354f7137dcf3b..463c5c3358cfa223331a7dd8f98481c14614de2c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ PHP                                                                        NEWS
 - Deprecated session_register(), session_unregister() and
   session_is_registered(). (Hannes)
 
+- Fixed bug #46847 (phpinfo() is missing some settings). (Hannes)
 - Fixed bug #46811 (ini_set() doesn't return false on failure). (Hannes)
 - Fixed bug #46746 (xmlrpc_decode_request outputs non-suppressable error when
   given bad data). (Ilia)
index fae6d94882d74204481811161476b9e6818881a0..8384ba1b090f8f244433f581eb3f81a199a4e885 100644 (file)
@@ -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();
 }
 /* }}} */
 
index 4811a45ef539d5a57b85891aa8a17b86cae4cc95..fa26ecdabf5c97a1a8303ff509991274dc3d810d 100644 (file)
@@ -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();
 }
 /* }}} */
 
index 23eec4475ea069a6b95f8cd6a3aebd709cebd9f1..452f39d5a8b9a030940f74860f5100cd2e0b60f9 100644 (file)
@@ -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();
 }
 /* }}} */
 
index bc4c06f3367a1c7e5a759348b6cc6c6f0c1f72d7..589b31b530a671f9d70e2ad96c6c90456cbbf6ce 100644 (file)
@@ -1114,6 +1114,7 @@ PHP_MSHUTDOWN_FUNCTION(gd)
 #if HAVE_GD_FONTMUTEX && HAVE_LIBFREETYPE
        gdFontCacheMutexShutdown();
 #endif
+       UNREGISTER_INI_ENTRIES();
        return SUCCESS;
 }
 #endif
@@ -1312,6 +1313,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();
 }
 /* }}} */
 
index d142260954624c304affaaf0bd87427b283661d8..828d19112b0e8eef9f802f941e80d71734ec0465 100644 (file)
@@ -271,6 +271,7 @@ PHP_MINFO_FUNCTION(ldap)
 #endif
 
        php_info_print_table_end();
+       DISPLAY_INI_ENTRIES();
 }
 /* }}} */