Another place we don't need to specify line endings
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 5 Jun 2009 17:44:13 +0000 (11:44 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 5 Jun 2009 19:05:34 +0000 (13:05 -0600)
imp/lib/Contents.php

index e052100..e31c1a7 100644 (file)
@@ -231,7 +231,7 @@ class IMP_Contents
                 Horde_Imap_Client::FETCH_HEADERTEXT => array(array('peek' => true)),
                 Horde_Imap_Client::FETCH_BODYTEXT => array(array('peek' => true))
             ), array('ids' => array($this->_index)));
-            return $res[$this->_index]['headertext'][0] . "\r\n\r\n" . $res[$this->_index]['bodytext'][0];
+            return $res[$this->_index]['headertext'][0] . $res[$this->_index]['bodytext'][0];
         } catch (Horde_Imap_Client_Exception $e) {
             return '';
         }