From ebc4e03cc5c0814b4f82994cc54db551003dbdb0 Mon Sep 17 00:00:00 2001 From: Gunnar Wrobel Date: Mon, 9 Aug 2010 08:15:39 +0200 Subject: [PATCH] Fix a parse error in the iTip viewer (incomplete conversion to the Horde_iCalendar H4 changes). --- imp/lib/Mime/Viewer/Itip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") . '

'; } -- 2.11.0