diff options
Diffstat (limited to 'ext/recode/recode.c')
| -rw-r--r-- | ext/recode/recode.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/recode/recode.c b/ext/recode/recode.c index 51762ba6fd..8967e8c202 100644 --- a/ext/recode/recode.c +++ b/ext/recode/recode.c @@ -90,10 +90,11 @@ PHP_MINFO_FUNCTION(recode)  {  	ReSLS_FETCH(); -	php_printf("<table border=5 width=\"600\">"); -	php_info_print_table_header(1, "Module Revision"); -	php_info_print_table_row(1, "$Revision$"); -	php_printf("</table>\n"); +	php_info_print_table_start(); +	php_info_print_table_row(2, "Recode Support", "enabled); +	php_info_print_table_row(2, "Revision", "$Revision$"); +	php_info_print_table_end(); +  }  /* {{{ proto string recode_string(string request, string str)  | 
