Logged In: NO

The following patch fixes this issue.

--- event.inc.php.orig 2007-04-06 12:52:07.000000000 -0500
+++ event.inc.php 2007-04-06 11:09:56.000000000 -0500
@@ -238,7 +238,7 @@
// on this event and has calculated that overlapping recurrences exist, the property will
// hold the timestamp of what it has calculated to be the start DAY (no time values) of the
// next recurrence.
- if ($this->$recur_nextStartStamp) $target_stamp = $recur_nextStartStamp;
+ if ($recur_nextStartStamp && $this->$recur_nextStartStamp) $target_stamp = $recur_nextStartStamp;

$target_day = (int)date("d", $target_stamp);
$target_month = (int)date("m", $target_stamp);