From e746ec0e292e047337883ae459f10fac79e197b1 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 4 Dec 2008 22:39:14 -0700 Subject: [PATCH] needs to be '', not null. JSON converts null to 'null' apparently. --- imp/lib/Views/ShowMessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? */ -- 2.11.0