From c54b79bdd90cd90e538dee916984697de90c636a Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Fri, 20 Sep 2002 15:39:50 +0000 Subject: [PATCH] Since the cyrus extension prints only one line, and no subsequent info, it should have a similar appearance as the other one-liners. Use php_info_print_table_row() instead of php_info_print_table_header(), as in the other extensions. --- ext/cyrus/cyrus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/cyrus/cyrus.c b/ext/cyrus/cyrus.c index a16b2278a1..31032d6af1 100644 --- a/ext/cyrus/cyrus.c +++ b/ext/cyrus/cyrus.c @@ -102,7 +102,7 @@ PHP_MINIT_FUNCTION(cyrus) PHP_MINFO_FUNCTION(cyrus) { php_info_print_table_start(); - php_info_print_table_header(2, "Cyrus IMAP support", "enabled"); + php_info_print_table_row(2, "Cyrus IMAP support", "enabled"); php_info_print_table_end(); } -- 2.50.1