mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
- Fixed bug #52461 (Incomplete doctype and missing xmlns)
This commit is contained in:
parent
2c0ab6fc33
commit
0d82e0c266
4
NEWS
4
NEWS
@ -2,6 +2,10 @@ PHP NEWS
|
||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||
?? ??? 2011, PHP 5.3.8
|
||||
|
||||
- Core:
|
||||
. Fixed bug #52461 (Incomplete doctype and missing xmlns).
|
||||
(virsacer at web dot de, Pierre)
|
||||
|
||||
- Improved NSAPI SAPI: (Uwe Schindler)
|
||||
. Don't set $_SERVER['HTTPS'] on unsecure connection (bug #55403).
|
||||
|
||||
|
@ -626,7 +626,7 @@ PHPAPI void php_print_info_htmlhead(TSRMLS_D)
|
||||
|
||||
|
||||
PUTS("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"DTD/xhtml1-transitional.dtd\">\n");
|
||||
PUTS("<html>");
|
||||
PUTS("<html xmlns=\"http://www.w3.org/1999/xhtml\">>");
|
||||
PUTS("<head>\n");
|
||||
php_info_print_style(TSRMLS_C);
|
||||
PUTS("<title>phpinfo()</title>");
|
||||
|
Loading…
Reference in New Issue
Block a user