Skip to content

Commit

Permalink
Fix bad merge again.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Sep 28, 2013
1 parent cf3fce9 commit f460fc3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/Mime/lib/Horde/Mime/Part.php
Expand Up @@ -548,7 +548,8 @@ protected function _transferEncode($fp, $encoding)
return $this->_writeStream($fp, array(
'filter' => array(
'convert.base64-encode' => array(
'line-break-chars' => $this->getEOL()
'line-break-chars' => $this->getEOL(),
'line-length' => 76
)
)
));
Expand All @@ -563,8 +564,7 @@ protected function _transferEncode($fp, $encoding)
'filter' => array(
'convert.quoted-printable-encode' => array_filter(array(
'line-break-chars' => $stream->getEOL(),
'line-length' => 76,
'binary' => true
'line-length' => 76
))
)
));
Expand Down

0 comments on commit f460fc3

Please sign in to comment.