diff options
| author | Sander Roobol <sander@php.net> | 2002-06-09 12:56:27 +0000 |
|---|---|---|
| committer | Sander Roobol <sander@php.net> | 2002-06-09 12:56:27 +0000 |
| commit | 85a99fa5a369930e25bf196af63d6227611e67f2 (patch) | |
| tree | 6301d08884780860756a279c223549a6b9f08fed | |
| parent | c5dc21f8c23a4f4a81a3b0dc9331719fa8246a72 (diff) | |
| download | php-git-85a99fa5a369930e25bf196af63d6227611e67f2.tar.gz | |
Don't use headers if the module contains only one phpinfo() entry, just
stick to ordinary rows.
| -rw-r--r-- | ext/dio/dio.c | 2 | ||||
| -rw-r--r-- | ext/gmp/gmp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/dio/dio.c b/ext/dio/dio.c index 90ba912fc3..60c6ab5a47 100644 --- a/ext/dio/dio.c +++ b/ext/dio/dio.c @@ -124,7 +124,7 @@ PHP_MINIT_FUNCTION(dio) PHP_MINFO_FUNCTION(dio) { php_info_print_table_start(); - php_info_print_table_header(2, "dio support", "enabled"); + php_info_print_table_row(2, "dio support", "enabled"); php_info_print_table_end(); } diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 1a3c579f09..11b5d87c40 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -163,7 +163,7 @@ ZEND_MODULE_SHUTDOWN_D(gmp) ZEND_MODULE_INFO_D(gmp) { php_info_print_table_start(); - php_info_print_table_header(2, "gmp support", "enabled"); + php_info_print_table_row(2, "gmp support", "enabled"); php_info_print_table_end(); /* Remove comments if you have entries in php.ini |
