diff options
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 471db3f26f..5406880e09 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -293,7 +293,7 @@ PHP_MINFO_FUNCTION(mysql) DISPLAY_INI_ENTRIES(); - php_printf("<table border=5 width=\"600\">"); + php_info_print_table_start(); php_info_print_table_header(2, "Key", "Value"); sprintf(buf, "%ld", MySG(num_persistent)); php_info_print_table_row(2, "Active Persistent Links", buf); @@ -305,7 +305,7 @@ PHP_MINFO_FUNCTION(mysql) php_info_print_table_row(2, "MYSQL_LFLAGS", PHP_MYSQL_LFLAGS); php_info_print_table_row(2, "MYSQL_LIBS", PHP_MYSQL_LIBS); #endif - php_printf("</table>\n"); + php_info_print_table_end(); } |