mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
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