mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
fixes #4902, email smtp headers
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7180 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
e9daddddf3
commit
2999b7f15d
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ class EmailComponent extends Object{
|
|||
if (strtolower($this->charset) !== 'iso-8859-15') {
|
||||
$start = "=?" . $this->charset . "?B?";
|
||||
$end = "?=";
|
||||
$spacer = $end . "\n " . $start;
|
||||
$spacer = $end . $this->_newLine . $start;
|
||||
|
||||
$length = 75 - strlen($start) - strlen($end);
|
||||
$length = $length - ($length % 4);
|
||||
|
|
Loading…
Reference in a new issue