From b96ead1d53909f5bf641055f4f68e2a88209d64f Mon Sep 17 00:00:00 2001 From: mh Date: Sat, 18 Jan 2003 08:38:06 +0000 Subject: [PATCH] comment out sending of charset through content-type HTTP header until the code to find the current Locale is propogated to Abstractservlet so that OpenMir can use it and set the charset.. --- source/OpenMir.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/OpenMir.java b/source/OpenMir.java index 6f85ad3d..8d073c6d 100755 --- a/source/OpenMir.java +++ b/source/OpenMir.java @@ -51,7 +51,7 @@ import mircoders.storage.*; * OpenMir.java - main servlet for open posting and comment feature to articles * * @author RK 1999-2001, the mir-coders group - * @version $Id: OpenMir.java,v 1.17 2002/12/23 03:12:46 mh Exp $ + * @version $Id: OpenMir.java,v 1.18 2003/01/18 08:38:06 mh Exp $ * */ @@ -98,8 +98,8 @@ public class OpenMir extends AbstractServlet { //make sure client browsers don't cache anything setNoCaching(res); - res.setContentType("text/html; charset=" - +MirConfig.getProp("Mir.DefaultHTMLCharset")); + res.setContentType("text/html"); + //res.setContentType("text/html; charset="+MirConfig.getProp("Mir.DefaultHTMLCharset")); try { ServletModuleDispatch.dispatch(ServletModuleOpenIndy.getInstance(),req,res); } -- 2.11.0