attempt to fix a sync problem regarding recurring events: append T and the (End)time, since the RRULE seems not to be understood by the client

without the THHMMSS tail (Where HHMMSS is something like 211465, a time with hour minute seconds appended)
This commit is contained in:
Klaus Leithoff 2008-02-28 11:11:34 +00:00
parent c53cf5cee5
commit ce1afa2ce8

View File

@ -282,7 +282,8 @@
{
$recur_enddate += 86400;
}
$rrule['UNTIL'] = date('Ymd',$recur_enddate);
# append T and the Endtime, since the RRULE seems not to be understood by the client without it
$rrule['UNTIL'] = date('Ymd',$recur_enddate).'T'.date('His',($event['end']?$event['end']:$event['start'])) ;
}
else
{