diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-11-23 00:15:08 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-11-23 00:15:08 +0000 |
commit | 8c86ea4693021aa4f0cd5817d9fbffb6c48c306d (patch) | |
tree | f0e373fb7d4f753d9c80495bfbd28f4817357e0f /ext | |
parent | 2f6cebb206de0564237dd580a15da842772eeef0 (diff) | |
download | php-git-8c86ea4693021aa4f0cd5817d9fbffb6c48c306d.tar.gz |
Fixed bug #35046 (phpinfo() uses improper css enclosure).
Diffstat (limited to 'ext')
-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 e8f4042eca..6583bdbe9b 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -203,9 +203,9 @@ static void php_print_gpcse_array(char *name, uint name_length TSRMLS_DC) */ void php_info_print_style(TSRMLS_D) { - php_printf("<style type=\"text/css\"><!--\n"); + php_printf("<style type=\"text/css\">\n"); php_info_print_css(TSRMLS_C); - php_printf("//--></style>\n"); + php_printf("</style>\n"); } /* }}} */ |