- Fixed bug #35243 (php_mblen() crashes when compiled with thread-safety
on Linux). (Patch: shulmanb at il dot ibm dot com, Jani)
- Fixed bug #35143 (gettimeofday() ignores current time zone). (Derick)
+- Fixed bug #35046 (phpinfo() uses improper css enclosure). (Ilia)
- Fixed bug #33153 (crash in mssql_next result). (Frank)
- Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
- Fixed bug #33201 (Crash when fetching some data types). (Frank)
*/
void php_info_print_style(TSRMLS_D)
{
- php_printf("<style type=\"text/css\"><!--\n");
+ php_printf("<style type=\"text/css\">\n");
php_info_print_css(TSRMLS_C);
- php_printf("//--></style>\n");
+ php_printf("</style>\n");
}
/* }}} */