in reply to timelocal_nocheck: bug or wrongly understood
out of the unless ($Options{no_range_check}) braces in Local.pm timegm function shouldn't make it, at least for months over 11... For negative months it's a bit more complex...if ($month > 11) { my $gap = int($month/12) ; $year += $gap ; $month -= 12*$gap ; }
|
|---|