** can you think of anything that would separate them? **
Yes, each have different schedule files.
I just tried mine and it was starting with a date of 02/05/2005. I found that it was retrieving a corrupted schedule file, one that didn't have an event ID defined for it, and using its date.
You can try these changes although I have no idea of their full possible ramifications. I doubt there will be any though.
In the One Click plug-in's schedule_oneclick_non_recurring.html file, find the line (at approx # 13)
$schedule = $db_schedule->getRecord( {'event_id'=>$event->{'id'}} );
and try changing it to
if ($event->{'id'}) {
$schedule = $db_schedule->getRecord( {'event_id'=>$event->{'id'}} );
}
Maybe you can report any problems it generates (if it does).
BTW. You might also want to check your schedule.txt file looking for any without an event_id defined for them. Such schedules probably shouldn't be in there.
JFYI
Dan O.
------------------