]> granicus.if.org Git - php/commitdiff
Fix bug #55483 (extra > at the end of html tag in phpinfo).
authorAdam Harvey <aharvey@php.net>
Tue, 23 Aug 2011 06:07:24 +0000 (06:07 +0000)
committerAdam Harvey <aharvey@php.net>
Tue, 23 Aug 2011 06:07:24 +0000 (06:07 +0000)
ext/standard/info.c

index a07ccee149d69f638785b057dabf99420ccfec18..f75d10fd5138ea85c6e5222cdc056a30af8811e2 100644 (file)
@@ -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 xmlns=\"http://www.w3.org/1999/xhtml\">>");
+       PUTS("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
        PUTS("<head>\n");
        php_info_print_style(TSRMLS_C);
        PUTS("<title>phpinfo()</title>");