Edit report at https://bugs.php.net/bug.php?id=57933&edit=1
ID: 57933 Updated by: fel...@php.net Reported by: selsky at columbia dot edu Summary: Wrong table type used in phpinfo output -Status: Open +Status: Closed Type: Bug Package: Filesystem function related Operating System: Linux PHP Version: Irrelevant -Assigned To: +Assigned To: felipe Block user comment: N Private report: N New Comment: This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. For Windows: http://windows.php.net/snapshots/ Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2012-07-28 22:07:20] fel...@php.net Automatic comment on behalf of felipe...@gmail.com Revision: http://git.php.net/?p=php-src.git;a=commit;h=068fc008c6828c2e045064a831ecb90136c6365b Log: - Fixed bug #57933 (Wrong table type used in phpinfo output) patch by: selsky at columbia dot edu ------------------------------------------------------------------------ [2007-11-28 16:58:38] selsky at columbia dot edu Description: ------------ On the phpinfo page, the output is a table header instead of a table row and the rest of the core extensions use when they only have a single row of output. Reproduce code: --------------- --- fileinfo.c~ 2006-11-07 16:18:51.000000000 -0500 +++ fileinfo.c 2007-11-28 16:53:04.799707000 -0500 @@ -240,7 +240,7 @@ PHP_MINFO_FUNCTION(fileinfo) { php_info_print_table_start(); - php_info_print_table_header(2, "fileinfo support", "enabled"); + php_info_print_table_row(2, "fileinfo support", "enabled"); php_info_print_table_end(); } /* }}} */ ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=57933&edit=1