From: Michael M Slusarz Date: Fri, 5 Dec 2008 05:39:14 +0000 (-0700) Subject: needs to be '', not null. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e746ec0e292e047337883ae459f10fac79e197b1;p=horde.git needs to be '', not null. JSON converts null to 'null' apparently. --- diff --git a/imp/lib/Views/ShowMessage.php b/imp/lib/Views/ShowMessage.php index 4a3e9ddca..20da262c9 100644 --- a/imp/lib/Views/ShowMessage.php +++ b/imp/lib/Views/ShowMessage.php @@ -324,7 +324,7 @@ class IMP_Views_ShowMessage : sprintf(ngettext("%d Attachment", "%d Attachments", $atc_parts), $atc_parts); $result['atc_download'] = (count($display_ids) > 2) ? Horde::link($imp_contents->urlView($imp_contents->getMIMEMessage(), 'download_all', array('params' => array('download_ids' => serialize($atc_parts))))) . '[' . _("Save All") . ']' - : null; + : ''; } /* Show attachment information in headers? */