diff --git a/plugins/calendar/calendar.php b/plugins/calendar/calendar.php index fe7c311a..2f80a595 100644 --- a/plugins/calendar/calendar.php +++ b/plugins/calendar/calendar.php @@ -2093,6 +2093,9 @@ class calendar extends rcube_plugin // show a box for every event in the file foreach ($events as $idx => $event) { + if ($event['_type'] != 'event') // skip non-event objects (#2928) + continue; + // define buttons according to method if ($this->ical->method == 'REPLY') { $title = $this->gettext('itipreply');