From d8fd5a295fc83401da3fc508f7de4e15ccea2d06 Mon Sep 17 00:00:00 2001 From: Arthur Bols Date: Wed, 5 Oct 2022 21:07:14 +0200 Subject: [PATCH] Fix timezone issue for some users --- public/ical.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/ical.php b/public/ical.php index 2463b03..ab2c14b 100644 --- a/public/ical.php +++ b/public/ical.php @@ -9,7 +9,7 @@ function create_calendar($courses) { $vcalendar = new VObject\Component\VCalendar(); $tz = $vcalendar->createComponent('VTIMEZONE', [ - 'TZID' => 'CET', + 'TZID' => 'Europe/Brussels', ]); $standard = $vcalendar->createComponent('STANDARD', [ 'DTSTART' => '16010101T030000',