diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-07-28 13:59:06 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-07-28 13:59:06 +0000 |
commit | 3a78dce03205d820122231d4f62e3e0d9a9a7a1f (patch) | |
tree | 5f63b14b299cff43fcd2527567a059c0d2823f54 /ext/zip/php_zip.c | |
parent | a76b852989306ac4c71a32b5e792e5b21a198dec (diff) | |
download | php-git-3a78dce03205d820122231d4f62e3e0d9a9a7a1f.tar.gz |
Cleanup phpinfo() output
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r-- | ext/zip/php_zip.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index b736004fb4..96b8e4d578 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -1914,12 +1914,12 @@ PHP_MSHUTDOWN_FUNCTION(zip) PHP_MINFO_FUNCTION(zip) { php_info_print_table_start(); - { - php_info_print_table_row(2, "Zip", "enabled"); - php_info_print_table_row(2, "$Id$", "enabled"); - php_info_print_table_row(2, "Zip version", "1.4.0"); - php_info_print_table_row(2, "Libzip version", "0.7.1"); - } + + php_info_print_table_row(2, "Zip", "enabled"); + php_info_print_table_row(2, "Extension Version","$Id$"); + php_info_print_table_row(2, "Zip version", "1.4.0"); + php_info_print_table_row(2, "Libzip version", "0.7.1"); + php_info_print_table_end(); } /* }}} */ |