From: Michael M Slusarz Date: Thu, 4 Jun 2009 16:44:57 +0000 (-0600) Subject: This is correctly fixed in Horde_Imap_Client, not here X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=91522cad594193919583bdc988b02e3fd62687d5;p=horde.git This is correctly fixed in Horde_Imap_Client, not here --- 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 ''; }