...
Added the following as the first line in headerFull.jsp and headerMinimal.jsp:<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
Check the current setting
To confirm the current character set, modify maintenance/systemInfo.jsp by adding these lines:
Code Block |
---|
<tr>
<td>Default Locale</td>
<td><%= java.nio.charset.Charset.defaultCharset() %></td>
</tr>
|
Modified Controller to make correct urls
...