forked from extern/egroupware
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:
parent
c53cf5cee5
commit
ce1afa2ce8
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user