Author: markt
Date: Wed Aug 7 20:07:15 2013
New Revision: 1511468
URL: http://svn.apache.org/r1511468
Log:
Part of fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=48550
Make sure Servlets that could output UTF-8 mark the content as UTF-8. I think I
found all the places where this needed to be changed. The other possible places
involve HTTP headers so must be ISO-8859-1.
Modified:
tomcat/trunk/webapps/examples/WEB-INF/classes/SessionExample.java
Modified: tomcat/trunk/webapps/examples/WEB-INF/classes/SessionExample.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/WEB-INF/classes/SessionExample.java?rev=1511468&r1=1511467&r2=1511468&view=diff
==============================================================================
--- tomcat/trunk/webapps/examples/WEB-INF/classes/SessionExample.java (original)
+++ tomcat/trunk/webapps/examples/WEB-INF/classes/SessionExample.java Wed Aug
7 20:07:15 2013
@@ -49,7 +49,7 @@ public class SessionExample extends Http
HttpServletResponse response)
throws IOException, ServletException
{
- response.setContentType("text/html");
+ response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
out.println("<html>");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]