From 1ef12234c2086452df6d1601c4891ed9ae501883 Mon Sep 17 00:00:00 2001 From: Ian Holsman Date: Sun, 25 Aug 2002 20:40:11 +0000 Subject: [PATCH] make the output XHTML Submitted by : Erik Abele git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96528 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index d40abb873d..d989372c77 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -612,13 +612,13 @@ PROXY_DECLARE(int) ap_proxyerror(request_rec *r, int statuscode, const char *mes apr_table_setn(r->notes, "error-notes", apr_pstrcat(r->pool, "The proxy server could not handle the request " - "pool, r->uri), + "pool, r->uri), "\">", ap_escape_html(r->pool, r->method), " ", - ap_escape_html(r->pool, r->uri), ".

\n" - "Reason: ", + ap_escape_html(r->pool, r->uri), ".

\n" + "Reason: ", ap_escape_html(r->pool, message), - "", NULL)); + "

", NULL)); /* Allow "error-notes" string to be printed by ap_send_error_response() */ apr_table_setn(r->notes, "verbose-error-to", apr_pstrdup(r->pool, "*")); -- 2.50.1