org.apache.myfaces.custom.date.HtmlDateRenderer.encodeEnd() broken when no
converter is used
--------------------------------------------------------------------------------------------
Key: TOMAHAWK-1544
URL: https://issues.apache.org/jira/browse/TOMAHAWK-1544
Project: MyFaces Tomahawk
Issue Type: Bug
Components: Date
Affects Versions: 1.1.9
Reporter: Denis A.
the problem is in the decoding of date:
if (token.startsWith("year="))
{
userData.setYear(token.substring(5));
}
if (token.startsWith("month="))
{
userData.setYear(token.substring(6));
}
if (token.startsWith("day="))
{
userData.setYear(token.substring(4));
.....
userData.setYear() is called for each case, while it should be setMonth(),
setDay() and so on.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.