]> granicus.if.org Git - php/commitdiff
Since the cyrus extension prints only one line, and no subsequent info,
authorMartin Kraemer <martin@php.net>
Fri, 20 Sep 2002 15:39:50 +0000 (15:39 +0000)
committerMartin Kraemer <martin@php.net>
Fri, 20 Sep 2002 15:39:50 +0000 (15:39 +0000)
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

index a16b2278a124f2ed8af303817a05f567547f14e9..31032d6af13349c71c73c032cb27a4ef5b3382c5 100644 (file)
@@ -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();
 }