From: Michael M Slusarz Date: Fri, 5 Jun 2009 17:44:13 +0000 (-0600) Subject: Another place we don't need to specify line endings X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=22f7ed755a7f540c0db38da159c0c16eafee87be;p=horde.git Another place we don't need to specify line endings --- diff --git a/imp/lib/Contents.php b/imp/lib/Contents.php index e05210001..e31c1a7b2 100644 --- a/imp/lib/Contents.php +++ b/imp/lib/Contents.php @@ -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 ''; }