diff options
author | Marcus Boerger <helly@php.net> | 2008-12-31 13:49:14 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2008-12-31 13:49:14 +0000 |
commit | 0bbbe4215643a70fccfceede256aa5ec8aa3ce9b (patch) | |
tree | 9e8b95c84e05ce42249dd1651be07f9fca7b8bea | |
parent | 8797aa99b70e0deaf126a9b10ba26b81bcdd3017 (diff) | |
download | php-git-0bbbe4215643a70fccfceede256aa5ec8aa3ce9b.tar.gz |
- MFH Fix info output
-rw-r--r-- | ext/standard/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 9c59485eb7..67f16a5d98 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -109,7 +109,7 @@ PHPAPI void php_info_print_module(zend_module_entry *zend_module TSRMLS_DC) /* { } } 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 @@ PHPAPI void php_print_info(int flag TSRMLS_DC) 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(); |