iliaa Tue Nov 22 19:15:11 2005 EDT Modified files: (Branch: PHP_5_1) /php-src NEWS /php-src/ext/standard info.c Log: Fixed bug #35046 (phpinfo() uses improper css enclosure). http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.213&r2=1.2027.2.214&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.213 php-src/NEWS:1.2027.2.214 --- php-src/NEWS:1.2027.2.213 Tue Nov 22 17:53:32 2005 +++ php-src/NEWS Tue Nov 22 19:15:05 2005 @@ -9,6 +9,7 @@ - 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) http://cvs.php.net/diff.php/php-src/ext/standard/info.c?r1=1.249.2.4&r2=1.249.2.5&ty=u Index: php-src/ext/standard/info.c diff -u php-src/ext/standard/info.c:1.249.2.4 php-src/ext/standard/info.c:1.249.2.5 --- php-src/ext/standard/info.c:1.249.2.4 Sat Aug 27 21:03:41 2005 +++ php-src/ext/standard/info.c Tue Nov 22 19:15:08 2005 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: info.c,v 1.249.2.4 2005/08/28 01:03:41 sniper Exp $ */ +/* $Id: info.c,v 1.249.2.5 2005/11/23 00:15:08 iliaa Exp $ */ #include "php.h" #include "php_ini.h" @@ -203,9 +203,9 @@ */ 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"); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php