From: lpsolit%gmail.com <> Date: Thu, 8 Dec 2005 17:52:04 +0000 (+0000) Subject: Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch... X-Git-Tag: bugzilla-2.20.1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f6165ad3ddb11a1275696ac280daa4a3002ff9f;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 23e0035934..a679b377a9 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -598,7 +598,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;