fix MINFO handler

This commit is contained in:
Antony Dovgal 2007-07-12 15:07:32 +00:00
parent e8ed078f81
commit dc9d1c16a0

View file

@ -433,12 +433,10 @@ PHP_RSHUTDOWN_FUNCTION(unicode)
PHP_MINFO_FUNCTION(unicode)
{
php_info_print_box_start(0);
php_printf("ICU API extension\n");
php_printf("Based on ICU library %s\n", U_COPYRIGHT_STRING);
php_printf("ICU Version %s\n", U_ICU_VERSION);
php_info_print_table_row(2, "ICU API extension", "enabled");
php_info_print_table_row(2, "Based on ICU library", U_COPYRIGHT_STRING);
php_info_print_table_row(2, "ICU Version", U_ICU_VERSION);
php_info_print_box_end();
/* add your stuff here */
}
/* }}} */