Browse Source

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.
migration/unlabaled-1.1.2
Martin Kraemer 24 years ago
parent
commit
c54b79bdd9
  1. 2
      ext/cyrus/cyrus.c

2
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();
}

Loading…
Cancel
Save