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 '';