Description
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.
Attachments
Attachments
Issue Links
- is related to
-
TOMAHAWK-1014 HTMLInputDate ignores custom converters
- Closed