You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2002/08/25 22:40:11 UTC

cvs commit: httpd-2.0/modules/proxy proxy_util.c

ianh        2002/08/25 13:40:11

  Modified:    modules/proxy proxy_util.c
  Log:
  make the output XHTML
  Submitted by : Erik Abele <er...@codefaktor.de>
  
  Revision  Changes    Path
  1.98      +4 -4      httpd-2.0/modules/proxy/proxy_util.c
  
  Index: proxy_util.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_util.c,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- proxy_util.c	15 Jul 2002 08:05:10 -0000	1.97
  +++ proxy_util.c	25 Aug 2002 20:40:11 -0000	1.98
  @@ -612,13 +612,13 @@
       apr_table_setn(r->notes, "error-notes",
   	apr_pstrcat(r->pool, 
   		"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),
   		"&nbsp;", 
  -		ap_escape_html(r->pool, r->uri), "</A></EM>.<P>\n"
  -		"Reason: <STRONG>",
  +		ap_escape_html(r->pool, r->uri), "</a></em>.<p>\n"
  +		"Reason: <strong>",
   		ap_escape_html(r->pool, message), 
  -		"</STRONG>", NULL));
  +		"</strong></p>", 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, "*"));