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

index 63c8663bec2215db1e82783f570e59e4cd5f62db..64800b1df50cd8eef332d8323015e3362dbf980c 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 099e205d58e4ee4189819bd2743255d54d02326d..862b66b3493f0536db4c6f297fdd0e099397a6ec 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 0e90c33f0179a6a33a243320986d892487476f5d..28a1a6e8a1ba6a72adff2bf422c7104dd3884584 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 95ba2c76aa3113de77147b8bef2daecf9c51b117..906df451de01ae666578e2fb50b2a65e0857b672 100644 (file)
@@ -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();
 }
 /* }}} */
 
index a6b1ef2e0d3ddafbf9f584ad4af3b56bffa21625..d936c0325823154533a5ee7921af74254f37ad8d 100644 (file)
@@ -271,6 +271,7 @@ PHP_MINFO_FUNCTION(ldap)
 #endif
 
        php_info_print_table_end();
+       DISPLAY_INI_ENTRIES();
 }
 /* }}} */