diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-07-28 14:27:03 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-07-28 14:27:03 +0000 |
commit | 0de5728c8209e27c85903acecb25c5e789dff025 (patch) | |
tree | b01ed6511dd058421d5ac98d36fa7a6854485ed3 /ext/hash | |
parent | 726dee9ee336d0d4ec17f9937356781b45bf1628 (diff) | |
download | php-git-0de5728c8209e27c85903acecb25c5e789dff025.tar.gz |
cleanup of the phpinfo() output.
Diffstat (limited to 'ext/hash')
-rw-r--r-- | ext/hash/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hash/hash.c b/ext/hash/hash.c index 7af7baef81..cfa32bc811 100644 --- a/ext/hash/hash.c +++ b/ext/hash/hash.c @@ -590,8 +590,8 @@ PHP_MINFO_FUNCTION(hash) *s = 0; php_info_print_table_start(); - php_info_print_table_header(2, "hash support", "enabled"); - php_info_print_table_header(2, "Hashing Engines", buffer); + php_info_print_table_row(2, "hash support", "enabled"); + php_info_print_table_row(2, "Hashing Engines", buffer); php_info_print_table_end(); } /* }}} */ |