Alright, I’ve been able to patch it until the official update comes through.
In the event-organiser-ajax.php
file, eventorganiser_admin_calendar()
function, you can replace the rows 370-371, reading:
$event_start = new DateTime($post->StartDate.' '.$post->StartTime, $tz);
$event_end = new DateTime($post->EndDate.' '.$post->FinishTime, $tz);
with
$event_start = $schedule['start'];
$event_end = $schedule['end'];