freemarker template bug: template/xhtml/form-close-validate.ftl ---------------------------------------------------------------
Key: WW-2417 URL: https://issues.apache.org/struts/browse/WW-2417 Project: Struts 2 Issue Type: Bug Components: Expression Language Affects Versions: 2.0.11 Environment: windows XP tomcat6 struts 2.0.11 Reporter: alex xiao line 95 ${validator.min?string}<#else>false</#if> || ... line 97 ${validator.max?string }<#else>false</#if>) { .... must change to : line 95 ${validator.min?c}<#else>false</#if> || ... line 97 ${validator.max?c}<#else>false</#if>) { .... -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.