diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2005-11-23 00:17:17 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2005-11-23 00:17:17 +0000 |
| commit | fb6cf622543901599e068557f159c43e5ee4322e (patch) | |
| tree | b8d751a5460d3f3ce67f2053a20b0b4255eea422 | |
| parent | 4a5dec57bebe7ce19972d6415825c7d42b172560 (diff) | |
| download | php-git-fb6cf622543901599e068557f159c43e5ee4322e.tar.gz | |
MFH: Fixed bug #35046 (phpinfo() uses improper css enclosure).
| -rw-r--r-- | ext/standard/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index f1ed4b0908..65816c1b40 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -195,9 +195,9 @@ static void php_print_gpcse_array(char *name, uint name_length TSRMLS_DC) */ void php_info_print_style() { - php_printf("<style type=\"text/css\"><!--\n"); + php_printf("<style type=\"text/css\">\n"); php_info_print_css(); - php_printf("//--></style>\n"); + php_printf("</style>\n"); } /* }}} */ |
