This commit is contained in:
Mark Scherer 2015-09-21 13:45:18 +02:00
parent e176e2f4e1
commit 97b6f8674c
3 changed files with 6 additions and 6 deletions

View file

@ -2288,10 +2288,10 @@ class CakeEmailTest extends CakeTestCase {
protected function _getEmailByOldStyleCharset($charset, $headerCharset) {
$email = new CakeEmail(array('transport' => 'Debug'));
if (! empty($charset)) {
if (!empty($charset)) {
$email->charset = $charset;
}
if (! empty($headerCharset)) {
if (!empty($headerCharset)) {
$email->headerCharset = $headerCharset;
}
@ -2312,10 +2312,10 @@ class CakeEmailTest extends CakeTestCase {
protected function _getEmailByNewStyleCharset($charset, $headerCharset) {
$email = new CakeEmail(array('transport' => 'Debug'));
if (! empty($charset)) {
if (!empty($charset)) {
$email->charset($charset);
}
if (! empty($headerCharset)) {
if (!empty($headerCharset)) {
$email->headerCharset($headerCharset);
}