From: hno <> Date: Wed, 2 Jan 2002 04:24:25 +0000 (+0000) Subject: %L (err_html_text) should not be HTML quoted. X-Git-Tag: SQUID_3_0_PRE1~1222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=406ecea9651bc07d701524147a893b32cdd83305;p=thirdparty%2Fsquid.git %L (err_html_text) should not be HTML quoted. --- diff --git a/src/errorpage.cc b/src/errorpage.cc index a459de376e..641439aa5b 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -1,6 +1,6 @@ /* - * $Id: errorpage.cc,v 1.167 2001/10/24 07:45:34 hno Exp $ + * $Id: errorpage.cc,v 1.168 2002/01/01 21:24:25 hno Exp $ * * DEBUG: section 4 Error Generation * AUTHOR: Duane Wessels @@ -470,6 +470,7 @@ errorConvert(char token, ErrorState * err) case 'L': if (Config.errHtmlText) { memBufPrintf(&mb, "%s", Config.errHtmlText); + do_quote = 0; } else p = "[not available]"; break;