Subject: | Patch to correctly parse dd/mm/yyyy dates |
Line 128 of file Date/Parse.pm is:
($month,$day) = ($1 - 1,$3);
Instead it should be:
$day,$month) = ($1,$3 - 1);
This simple modification allowed me to correctly parse dates where the first item represents the day of month, and the second one the month (e.g. italian ones).
The module would instead insist that the first item was always the month, even if the date was parsed by a Date::Language->new('Italian') object.