Skip Menu |

This queue is for tickets about the Schedule-Cron-Events CPAN distribution.

Report information
The Basics
Id: 53899
Status: resolved
Priority: 0/
Queue: Schedule-Cron-Events

People
Owner: KOHTS [...] cpan.org
Requestors: cpan [...] zacglen.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.8
Fixed in: (no value)



Subject: First crondate element might be empty
In Events.pm where @crondate is being initialized you need to account for leading space on the line, as in " 2 * * * * whatever". The split might create the first element of the array as being empty. So you need to add: Show quoted text
> shift @crondate if $#crondate >= 0 && $crondate[0] eq '';
Fixed, will be released with 1.10 soon.