Only list event-type iTip invitations for RSVP (#2928)
This commit is contained in:
parent
1cb1f59bbc
commit
36dda1afd4
1 changed files with 3 additions and 0 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue