* don't HTML-escape the SERVER_NAME variable * do escape SERVER_NAME in error docs * remove dates from error pages (#86474), since they won't be in the right language --- httpd-2.0.45/docs/error/include/bottom.html.encode 2003-04-28 11:40:00.000000000 +0100 +++ httpd-2.0.45/docs/error/include/bottom.html 2003-04-28 11:32:42.000000000 +0100 @@ -5,10 +5,8 @@

Error

-
- -
-
+
+
--- httpd-2.0.45/server/util_script.c.encode 2003-04-28 11:39:45.000000000 +0100 +++ httpd-2.0.45/server/util_script.c 2003-04-28 11:39:23.000000000 +0100 @@ -266,8 +266,7 @@ apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r)); apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_version()); - apr_table_addn(e, "SERVER_NAME", - ap_escape_html(r->pool, ap_get_server_name(r))); + apr_table_addn(e, "SERVER_NAME", ap_get_server_name(r)); apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip); /* Apache */ apr_table_addn(e, "SERVER_PORT", apr_psprintf(r->pool, "%u", ap_get_server_port(r)));