helly Wed Dec 31 13:49:14 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard info.c Log: - MFH Fix info output http://cvs.php.net/viewvc.cgi/php-src/ext/standard/info.c?r1=1.249.2.10.2.14.2.20&r2=1.249.2.10.2.14.2.21&diff_format=u Index: php-src/ext/standard/info.c diff -u php-src/ext/standard/info.c:1.249.2.10.2.14.2.20 php-src/ext/standard/info.c:1.249.2.10.2.14.2.21 --- php-src/ext/standard/info.c:1.249.2.10.2.14.2.20 Wed Dec 31 12:52:39 2008 +++ php-src/ext/standard/info.c Wed Dec 31 13:49:14 2008 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: info.c,v 1.249.2.10.2.14.2.20 2008/12/31 12:52:39 helly Exp $ */ +/* $Id: info.c,v 1.249.2.10.2.14.2.21 2008/12/31 13:49:14 helly Exp $ */ #include "php.h" #include "php_ini.h" @@ -109,7 +109,7 @@ } } else { if (!sapi_module.phpinfo_as_text) { - php_printf("<tr><td colspan='2>%s</td></tr>\n", zend_module->name); + php_printf("<tr><td>%s</td></tr>\n", zend_module->name); } else { php_printf("%s\n", zend_module->name); } @@ -901,7 +901,7 @@ SECTION("Additional Modules"); php_info_print_table_start(); - php_info_print_table_header(2, "Module Name"); + php_info_print_table_header(1, "Module Name"); zend_hash_apply(&sorted_registry, (apply_func_t) _display_module_info_def TSRMLS_CC); php_info_print_table_end();
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php