From 1ff51dc2efc26e88af86452cecdb407088128338 Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@osticket.com> Date: Tue, 18 Mar 2014 03:24:36 +0000 Subject: [PATCH] oops: Fix syntax error introduced by 9199989de --- include/class.mailer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/class.mailer.php b/include/class.mailer.php index e91836d8a..4adc2c4b2 100644 --- a/include/class.mailer.php +++ b/include/class.mailer.php @@ -159,8 +159,8 @@ class Mailer { if (!(isset($options['text']) && $options['text'])) { if ($cfg->stripQuotedReply() && ($tag=$cfg->getReplySeparator()) && (!isset($options['reply-tag']) || $options['reply-tag'])) - $message = "<div style=\"display:none\" data-mid=\"$mid_token\">$tag<br/><br/></div - .$message; + $message = "<div style=\"display:none\" + data-mid=\"$mid_token\">$tag<br/><br/></div>$message"; // Make sure nothing unsafe has creeped into the message $message = Format::safe_html($message); //XXX?? $txtbody = rtrim(Format::html2text($message, 90, false)) -- GitLab