martin Fri Sep 20 11:39:51 2002 EDT Modified files: /php4/ext/cyrus cyrus.c Log: 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. Index: php4/ext/cyrus/cyrus.c diff -u php4/ext/cyrus/cyrus.c:1.11 php4/ext/cyrus/cyrus.c:1.12 --- php4/ext/cyrus/cyrus.c:1.11 Wed Jun 26 03:24:47 2002 +++ php4/ext/cyrus/cyrus.c Fri Sep 20 11:39:50 2002 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: cyrus.c,v 1.11 2002/06/26 07:24:47 derick Exp $ */ +/* $Id: cyrus.c,v 1.12 2002/09/20 15:39:50 martin Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -102,7 +102,7 @@ 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(); }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php