]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
PR 42847.
authorJim Jagielski <jim@apache.org>
Fri, 3 Aug 2007 15:26:34 +0000 (15:26 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 3 Aug 2007 15:26:34 +0000 (15:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@562503 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/generators/mod_info.c

diff --git a/CHANGES b/CHANGES
index 74d758afab23ee5317f1908e48d0405b9de67c30..bdc33a483a9b36396eaad5fc719e1266997b9568 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 Changes with Apache 2.3.0
   [Remove entries to the current 2.0 and 2.2 section below, when backported]
 
+  *) mod_info: mod_info outputs invalid XHTML 1.0 transitional.
+     PR 42847 [Rici Lake <rici ricilake.net>]
+
   *) mime.types: add registered Apple installer type
      PR 40379 [Peter Bierman <pmb+apache apple.com>]
    
index 59adf79cd6ec6419ee1fbe1681e09e20c4252388..37461fdd220a47549f310b724daa741058ea1772 100644 (file)
@@ -722,7 +722,7 @@ static int display_info(request_rec * r)
                                            ap_escape_html(r->pool, cmd->name),
                                            cmd->name[0] == '<' ? "&gt;" : "");
                                 if (cmd->errmsg) {
-                                    ap_rputs(cmd->errmsg, r);
+                                    ap_rputs(ap_escape_html(r->pool, cmd->errmsg), r);
                                 }
                                 ap_rputs("</i></tt></dd>\n", r);
                             }