From: Roland Haeder Date: Tue, 7 Apr 2015 21:16:42 +0000 (+0200) Subject: Subject line may contain HTML entities and then it needs to be put in X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=96e70f39118a846c87f3be30ef55d7489c2ac4c6;ds=sidebyside Subject line may contain HTML entities and then it needs to be put in to get rid of XML parser errors. Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/template/mail/class_MailTemplateEngine.php b/inc/classes/main/template/mail/class_MailTemplateEngine.php index cdd68d68..93e0f252 100644 --- a/inc/classes/main/template/mail/class_MailTemplateEngine.php +++ b/inc/classes/main/template/mail/class_MailTemplateEngine.php @@ -267,12 +267,10 @@ class MailTemplateEngine extends BaseTemplateEngine implements CompileableTempla /** * Setter for subject line property * - * @param $subjectLine Subject line to set in email * @return void */ - private function setEmailPropertySubjectLine ($subjectLine) { - // Set the template variable - $this->assignVariable('subject', $subjectLine); + private function setEmailPropertySubjectLine () { + // Empty for now } /**