From ca23809e633545f231cf906fcaf0183adca6b6f1 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 21 Oct 2015 23:14:54 +0200 Subject: [PATCH] Explicitly set allday property when parsing ical --- plugins/libcalendaring/libvcalendar.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/libcalendaring/libvcalendar.php b/plugins/libcalendaring/libvcalendar.php index 7575b537..1900e4fa 100644 --- a/plugins/libcalendaring/libvcalendar.php +++ b/plugins/libcalendaring/libvcalendar.php @@ -577,6 +577,8 @@ class libvcalendar implements Iterator // validate event dates if ($event['_type'] == 'event') { + $event['allday'] = false; + // check for all-day dates if ($event['start']->_dateonly) { $event['allday'] = true;