diff options
author | Andrey Andreev <narf@devilix.net> | 2016-08-01 12:54:06 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-08-01 12:54:06 +0200 |
commit | 9b0f5fa0339eb1f74ff06e769d71e5911ba2be06 (patch) | |
tree | f2446eb6067ce29c0ac2f5a87c0f5aab8ae5f0c5 /system/libraries | |
parent | ac8541b99be74c2870699221efbe898f132217e3 (diff) |
[ci skip] Fix #4739
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Email.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 5049578ed..315200344 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1468,7 +1468,8 @@ class CI_Email { .'Content-Type: '.$this->_attachments[$i]['type'].'; name="'.$name.'"'.$this->newline .'Content-Disposition: '.$this->_attachments[$i]['disposition'].';'.$this->newline .'Content-Transfer-Encoding: base64'.$this->newline - .(empty($this->_attachments[$i]['cid']) ? '' : 'Content-ID: <'.$this->_attachments[$i]['cid'].'>'.$this->newline.$this->newline) + .(empty($this->_attachments[$i]['cid']) ? '' : 'Content-ID: <'.$this->_attachments[$i]['cid'].'>'.$this->newline) + .$this->newline .$this->_attachments[$i]['content'].$this->newline; } |