fixed empty RECURRENCE-ID on ical export

This commit is contained in:
Christian Binder 2009-11-23 13:03:35 +00:00
parent bf9799ebfe
commit 8ae3b5f833

View File

@ -501,7 +501,7 @@ class calendar_ical extends calendar_boupdate
}
else
{
$attributes[$icalFieldName] = self::getDateTime($recur_date,$tzid,$parameters[$icalFieldName]);
$attributes[$icalFieldName] = self::getDateTime($event['recurrence'],$tzid,$parameters[$icalFieldName]);
}
unset($revent);
}
@ -658,8 +658,8 @@ class calendar_ical extends calendar_boupdate
$retval = $vcal->exportvCalendar();
if ($this->log) error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."()\n".array2string($retval)."\n",3,$this->logfile);
return $retval;
return $retval;
}
/**