mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Fixes #3502. Minor fix to email component - leading newline bug
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5956 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
398ea30c20
commit
1e1c49025a
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ class EmailComponent extends Object{
|
|||
$this->__header .= 'Content-Type: multipart/alternative; boundary="alt-' . $this->__boundary . '"' . $this->_newLine . $this->_newLine;
|
||||
}
|
||||
|
||||
$this->__header .= 'Content-Transfer-Encoding: 7bit' . $this->_newLine;
|
||||
$this->__header .= 'Content-Transfer-Encoding: 7bit';
|
||||
}
|
||||
/**
|
||||
* Format the message by seeing if it has attachments.
|
||||
|
|
Loading…
Add table
Reference in a new issue