From 5b0666e89bdc2ac9c84c880b9cf3f4c23a98c2ca Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Tue, 12 Sep 2017 21:25:08 +0200 Subject: [PATCH] fix timezone --- build/service/CalendarExtractor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/service/CalendarExtractor.php b/build/service/CalendarExtractor.php index cb075f9..64ba136 100644 --- a/build/service/CalendarExtractor.php +++ b/build/service/CalendarExtractor.php @@ -276,8 +276,8 @@ ---------------------------------------------------------*/ foreach($events as $start_t=>$stop_t){ $RAW .= "BEGIN:VEVENT\n"; - $RAW .= "DTSTART:$start_t\n"; - $RAW .= "DTSTOP:$stop_t\n"; + $RAW .= "DTSTART;TZID=Europe/Paris:$start_t\n"; + $RAW .= "DTSTOP;TZID=Europe/Paris:$stop_t\n"; $RAW .= "SUMMARY:$type\n"; $RAW .= "END:VEVENT\n\n"; }