This commit is contained in:
sockenklaus
2020-05-27 06:39:06 +02:00
parent 182a0e67b0
commit def64d3380
23 changed files with 767 additions and 794 deletions

View File

@@ -1,4 +1,7 @@
<% Servlets.setCharacterEncoding(request, response); %> <%-- Must be the very first, in order character encoding takes effect --%>
<%
request.setCharacterEncoding("UTF-8");
Servlets.setCharacterEncoding(request, response);
%> <%-- Must be the very first, in order character encoding takes effect --%>
<%@ include file="imports.jsp"%>
@@ -18,6 +21,7 @@
<%@page import="org.apache.commons.logging.LogFactory" %>
<%@page import="org.apache.commons.logging.Log" %>
<%@page import="org.openxava.web.Browsers"%>
<%@page contentType="text/html; charset=UTF-8" %>
<%!private static Log log = LogFactory.getLog("module.jsp");