Danny Rappleyea wrote: > > I'm writing a program that schedules recurring tasks using RFC 2445 recurrences. I'm > using DateTime::Format::ICal to turn the RFC 2445 strings into meaningful dates that > I can play with. I have a problem processing weekly recurrences. Can someone tell me > if I'm not understanding something, or there's a problem with the > DateTime::Format::ICal module. I have a test script that shows the problem. >
It's caused by a bug in DateTime::Event::Recurrence 828: if ( $interval ) should be: 828: if ( $interval && ( $interval > 1 ) ) I'll upload a new version. - Flavio S. Glock
