diff options
| author | Colin Viebrock <cmv@php.net> | 2002-09-26 17:54:54 +0000 |
|---|---|---|
| committer | Colin Viebrock <cmv@php.net> | 2002-09-26 17:54:54 +0000 |
| commit | c7c275b741d457367b26e8dafa5d2913bf2c75fd (patch) | |
| tree | cc7b4eb68ab5df8b930e9f037c5429249eb736eb /sapi | |
| parent | 6b8480fab67843b3a096a084c4676f5ad9a30e2f (diff) | |
| download | php-git-c7c275b741d457367b26e8dafa5d2913bf2c75fd.tar.gz | |
fix phpinfo() output for better browser BC
Diffstat (limited to 'sapi')
| -rw-r--r-- | sapi/aolserver/aolserver.c | 2 | ||||
| -rw-r--r-- | sapi/apache/php_apache.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sapi/aolserver/aolserver.c b/sapi/aolserver/aolserver.c index 1a8d1e4b17..1136d1dc1b 100644 --- a/sapi/aolserver/aolserver.c +++ b/sapi/aolserver/aolserver.c @@ -36,7 +36,7 @@ #endif #include "ext/standard/info.h" -#define SECTION(name) PUTS("<h2 class=\"section\">" name "</h2>\n") +#define SECTION(name) PUTS("<h2>" name "</h2>\n") #define NS_BUF_SIZE 511 diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 3bd2563e5b..4cde682d82 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -34,7 +34,7 @@ int php_apache_info_id; php_apache_info_struct php_apache_info; #endif -#define SECTION(name) PUTS("<h2 class=\"section\">" name "</h2>\n") +#define SECTION(name) PUTS("<h2>" name "</h2>\n") extern module *top_module; |
