From: Roland Haeder Date: Tue, 7 Apr 2015 21:01:03 +0000 (+0200) Subject: Fixed parser error ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8f7c53d0f83ff9e3c43761c669b2799bbe20f9f3;p=core.git Fixed parser error ... Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/mailer/class_BaseMailer.php b/inc/classes/main/mailer/class_BaseMailer.php index cd2de7ab..709945e4 100644 --- a/inc/classes/main/mailer/class_BaseMailer.php +++ b/inc/classes/main/mailer/class_BaseMailer.php @@ -162,7 +162,7 @@ class BaseMailer extends BaseFrameworkSystem { $templateName = $this->getTemplateName(); // Does the subject line exist? - if ((!empty($templateName)) && ($this->isGenericArrayElementSet('recipients', $templateName, 'generic', 'subject']))) { + if ((!empty($templateName)) && ($this->isGenericArrayElementSet('recipients', $templateName, 'generic', 'subject'))) { // Then use it $subjectLine = $this->getGenericArrayElement('recipients', $templateName, 'generic', 'subject'); } // END - if