diff --git a/imp/lib/Mime/Viewer/Itip.php b/imp/lib/Mime/Viewer/Itip.php index 41ce7530b4b..6c80b16b94a 100644 --- a/imp/lib/Mime/Viewer/Itip.php +++ b/imp/lib/Mime/Viewer/Itip.php @@ -120,6 +120,11 @@ protected function _renderInline() foreach ($vCal->getComponents() as $key => $component) { switch ($component->getType()) { case 'vEvent': + try { + if ($component->getAttribute('RECURRENCE-ID')) { + continue; + } + } catch (Horde_ICalendar_Exception $e) {} $out[] = $this->_vEvent($component, $key, $method); break;