From 0de5728c8209e27c85903acecb25c5e789dff025 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Fri, 28 Jul 2006 14:27:03 +0000 Subject: [PATCH] cleanup of the phpinfo() output. --- ext/hash/hash.c | 4 ++-- 1 file 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(); } /* }}} */ -- 2.50.1