Skip Menu |

This queue is for tickets about the Date-Calc CPAN distribution.

Report information
The Basics
Id: 62494
Status: new
Priority: 0/
Queue: Date-Calc

People
Owner: Nobody in particular
Requestors: tim.reichenau [...] uni-koeln.de
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 6.3
Fixed in: 5.3



Subject: Decode_Date_EU problem with leading zeros
Issue: Date::Calc::Decode_Date_EU returns different results for string representations of months with and without leading zeors. Occurred after upgrade from 5.3 (perl 5.10) to 6.3 (perl 5.12) on gentoo reproducible: always example: #!/usr/bin/perl -w use Date::Calc; my @date; @date = Date::Calc::Decode_Date_EU("22.04.1998"); print "@date\n"; @date = Date::Calc::Decode_Date_EU("22.4.1998"); print "@date\n";