You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the below commit $this->cal['VEVENT'] = $events; has been placed inside an IF statement, which means the modified events array isn't stored at the end of process event.
sortEventsWithOrder then uses dtstart_array[2] which isn't set anymore, causing undefined index exception.
In the below commit
$this->cal['VEVENT'] = $events;
has been placed inside an IF statement, which means the modified events array isn't stored at the end of process event.sortEventsWithOrder
then usesdtstart_array[2]
which isn't set anymore, causing undefined index exception.This commit introduced the issue:
72d3d0c#diff-50681920b8994c51dcfbb9a44850348f
Putting
$this->cal['VEVENT'] = $events;
back outside the IF statement fixes it.The text was updated successfully, but these errors were encountered: