From: lpsolit%gmail.com <> Date: Thu, 8 Dec 2005 17:46:44 +0000 (+0000) Subject: Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch... X-Git-Tag: bugzilla-2.22rc1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=664dc7a8661895a5e5f737fbf5bbcc18d0334e3a;p=thirdparty%2Fbugzilla.git Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch by Adam Guthrie r=myk a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 47db3c2bfb..10bdf3b9ee 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -591,7 +591,7 @@ sub sendMail { $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2&action=view\)/g; } - $substs{"neworchanged"} = $isnew ? ' New: ' : ''; + $substs{"neworchanged"} = $isnew ? 'New: ' : ''; $substs{"to"} = $user->email; $substs{"cc"} = ''; $substs{"bugid"} = $id;