From: Adam Harvey Date: Tue, 23 Aug 2011 06:07:24 +0000 (+0000) Subject: Fix bug #55483 (extra > at the end of html tag in phpinfo). X-Git-Tag: php-5.3.9RC1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c007d81796da8822ecfc35dfc563ee2d7e83211;p=php Fix bug #55483 (extra > at the end of html tag in phpinfo). --- diff --git a/ext/standard/info.c b/ext/standard/info.c index a07ccee149..f75d10fd51 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()");