From: Pierre Joye Date: Fri, 19 Aug 2011 09:59:47 +0000 (+0000) Subject: - Fixed bug #52461 (Incomplete doctype and missing xmlns) X-Git-Tag: php-5.3.8~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d82e0c26635c32168c5a37e4ea3ee2bbcbc31ed;p=php - Fixed bug #52461 (Incomplete doctype and missing xmlns) --- diff --git a/NEWS b/NEWS index 2f0b5cf633..0c3f22cc40 100644 --- a/NEWS +++ b/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). diff --git a/ext/standard/info.c b/ext/standard/info.c index 90ae34f0bc..a07ccee149 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -626,7 +626,7 @@ PHPAPI void php_print_info_htmlhead(TSRMLS_D) PUTS("\n"); - PUTS(""); + PUTS(">"); PUTS("\n"); php_info_print_style(TSRMLS_C); PUTS("phpinfo()");