On Jun 14, 2008, at 3:10 AM, sdumitriu (SVN) wrote:
Author: sdumitriu
Date: 2008-06-14 03:10:55 +0200 (Sat, 14 Jun 2008)
New Revision: 10325
Modified:
xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/web.xml
Log:
XWIKI-2117: encoding problems with AJAX adminstration utility
Fixed by not ignoring the specified character encoding sent by the
client.
Modified: xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
web.xml
===================================================================
--- xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
web.xml 2008-06-14 00:31:23 UTC (rev 10324)
+++ xwiki-platform/web/trunk/standard/src/main/webapp/WEB-INF/
web.xml 2008-06-14 01:10:55 UTC (rev 10325)
@@ -16,6 +16,10 @@
<param-name>encoding</param-name>
<param-value>ISO-8859-1</param-value>
</init-param>
+ <init-param>
+ <param-name>ignore</param-name>
+ <param-value>false</param-value>
+ </init-param>
Some comments on this init-param would be good I think, especially
since the "ignore" name is pretty cryptic.
Thanks
-Vincent