1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

make the output XHTML

Submitted by : Erik Abele <erik@codefaktor.de>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96528 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ian Holsman
2002-08-25 20:40:11 +00:00
parent 7f0c6db93c
commit 1ef12234c2

View File

@@ -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_table_setn(r->notes, "error-notes",
apr_pstrcat(r->pool, apr_pstrcat(r->pool,
"The proxy server could not handle the request " "The proxy server could not handle the request "
"<EM><A HREF=\"", ap_escape_uri(r->pool, r->uri), "<em><a href=\"", ap_escape_uri(r->pool, r->uri),
"\">", ap_escape_html(r->pool, r->method), "\">", ap_escape_html(r->pool, r->method),
"&nbsp;", "&nbsp;",
ap_escape_html(r->pool, r->uri), "</A></EM>.<P>\n" ap_escape_html(r->pool, r->uri), "</a></em>.<p>\n"
"Reason: <STRONG>", "Reason: <strong>",
ap_escape_html(r->pool, message), ap_escape_html(r->pool, message),
"</STRONG>", NULL)); "</strong></p>", NULL));
/* Allow "error-notes" string to be printed by ap_send_error_response() */ /* Allow "error-notes" string to be printed by ap_send_error_response() */
apr_table_setn(r->notes, "verbose-error-to", apr_pstrdup(r->pool, "*")); apr_table_setn(r->notes, "verbose-error-to", apr_pstrdup(r->pool, "*"));