Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • jiririchter

    (@jiririchter)

    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'];
    jiririchter

    (@jiririchter)

    I’ve got the same issue. I’ve traced it down to event-organiser-ajax.php file, eventorganiser_admin_calendar() function, where the query does not return fields StartDate, EndDate, StartTime, EndTime for events at all, so they all fall back to the default DateTime, which is the current one.

Viewing 2 replies - 1 through 2 (of 2 total)