From 5f429c57e9c3e849b58c48973f393036739bcbd7 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Fri, 19 Aug 2011 09:59:47 +0000 Subject: [PATCH] - Fixed bug #52461 (Incomplete doctype and missing xmlns) --- NEWS | 6 ++++-- ext/standard/info.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index ec11a15185a..3af9487fdaf 100644 --- a/NEWS +++ b/NEWS @@ -6,8 +6,10 @@ PHP NEWS . Turn on html_errors by default again in php.ini-production like it was in PHP 5.3, but only generate docref links when the docref_root INI setting is not empty. -- Fixed bug #55378: Binary number literal returns float number though its value - is small enough. (Derick) + . Fixed bug #55378: Binary number literal returns float number though its value + is small enough. (Derick) + . Fixed bug #52461 (Incomplete doctype and missing xmlns). + (virsacer at web dot de, Pierre) - Improved mbstring extension: . Added Shift_JIS Emoji (pictograms) support. (rui) diff --git a/ext/standard/info.c b/ext/standard/info.c index f57e4afab39..ae5be6213e5 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -633,7 +633,7 @@ PHPAPI char *php_get_uname(char mode) PHPAPI void php_print_info_htmlhead(TSRMLS_D) { php_info_print("\n"); - php_info_print(""); + php_info_print(""); php_info_print("\n"); php_info_print_style(TSRMLS_C); php_info_print("phpinfo()");