Skip to content

Commit

Permalink
Don't show additional viewer parts for vEvent components that represe…
Browse files Browse the repository at this point in the history
…nt exceptions.

Bug: 13399
  • Loading branch information
mrubinsk committed Jul 29, 2014
1 parent ffbfd88 commit 4c4d764
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions imp/lib/Mime/Viewer/Itip.php
Expand Up @@ -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;

Expand Down

0 comments on commit 4c4d764

Please sign in to comment.