From f6b024479082debaeaa2dbfe9d28ed218831784b Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Fri, 28 Jul 2006 14:27:17 +0000 Subject: [PATCH] MFB: 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 37d22f3b2c..9c4b23379d 100644 --- a/ext/hash/hash.c +++ b/ext/hash/hash.c @@ -608,8 +608,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