f:validateLength with equal minimun and maximun does not work
-------------------------------------------------------------
Key: MYFACES-1817
URL: https://issues.apache.org/jira/browse/MYFACES-1817
Project: MyFaces Core
Issue Type: Bug
Affects Versions: 1.2.2
Environment: tomca 6 win xp
Reporter: Leonardo Uribe
Assignee: Leonardo Uribe
Fix For: 1.2.3-SNAPSHOT
<f:validateLength maximum="2" minimum="2"/> works on jsf ri 1.2 and on myfaces
1.1.5 but not on myfaces 1.2.2
The solution is do this on LengthValidatorTag
protected boolean isMinLTMax()
{
return _min <= _max;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.