Only list event-type iTip invitations for RSVP (#2928)

This commit is contained in:
Thomas Bruederli 2014-03-18 12:07:29 +01:00
parent 1cb1f59bbc
commit 36dda1afd4

View file

@ -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');