From 91522cad594193919583bdc988b02e3fd62687d5 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 4 Jun 2009 10:44:57 -0600 Subject: [PATCH] This is correctly fixed in Horde_Imap_Client, not here --- imp/lib/Contents.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/lib/Contents.php b/imp/lib/Contents.php index 5427595ed..e05210001 100644 --- a/imp/lib/Contents.php +++ b/imp/lib/Contents.php @@ -208,8 +208,8 @@ class IMP_Contents try { $res = $GLOBALS['imp_imap']->ob->fetch($this->_mailbox, $query, array('ids' => array($this->_index))); return empty($options['mimeheaders']) - ? $res[$this->_index]['bodypart'][$id] . "\r\n" - : $res[$this->_index]['mimeheader'][$id] . "\r\n\r\n" . $res[$this->_index]['bodypart'][$id] . "\r\n"; + ? $res[$this->_index]['bodypart'][$id] + : $res[$this->_index]['mimeheader'][$id] . $res[$this->_index]['bodypart'][$id]; } catch (Horde_Imap_Client_Exception $e) { return ''; } -- 2.11.0