aharvey Tue, 23 Aug 2011 06:07:24 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=315332
Log: Fix bug #55483 (extra > at the end of html tag in phpinfo). Bug: https://bugs.php.net/55483 (Assigned) extra > at the end of html tag in phpinfo Changed paths: U php/php-src/branches/PHP_5_3/ext/standard/info.c Modified: php/php-src/branches/PHP_5_3/ext/standard/info.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/standard/info.c 2011-08-23 04:16:40 UTC (rev 315331) +++ php/php-src/branches/PHP_5_3/ext/standard/info.c 2011-08-23 06:07:24 UTC (rev 315332) @@ -626,7 +626,7 @@ 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>");
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php