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 /ext/dio | |
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.
Diffstat (limited to 'ext/dio')
-rw-r--r-- | ext/dio/dio.c | 2 |
1 files changed, 1 insertions, 1 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(); } |