From: Gunnar Wrobel Date: Mon, 9 Aug 2010 06:15:39 +0000 (+0200) Subject: Fix a parse error in the iTip viewer (incomplete conversion to the Horde_iCalendar... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ebc4e03cc5c0814b4f82994cc54db551003dbdb0;p=horde.git Fix a parse error in the iTip viewer (incomplete conversion to the Horde_iCalendar H4 changes). --- diff --git a/imp/lib/Mime/Viewer/Itip.php b/imp/lib/Mime/Viewer/Itip.php index 260be4b91..a6f806351 100644 --- a/imp/lib/Mime/Viewer/Itip.php +++ b/imp/lib/Mime/Viewer/Itip.php @@ -775,7 +775,7 @@ class IMP_Horde_Mime_Viewer_Itip extends Horde_Mime_Viewer_Base try { $sum = $vevent->getAttribute('SUMMARY'); $html .= '

' . _("Summary") . ': ' . htmlspecialchars($sum) . '

'; - } else { + } catch (Horde_Icalendar_Exception $e) { $html .= '

' . _("Summary") . ': ' . _("None") . '

'; }