From 5ad14bf5d9265847c1a38f934b63819f4ae7d9a3 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Thu, 8 Dec 2005 09:46:44 +0000 Subject: [PATCH] Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch by Adam Guthrie r=myk a=justdave --- webtools/bugzilla/Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/Bugzilla/BugMail.pm b/webtools/bugzilla/Bugzilla/BugMail.pm index 47db3c2bfbf..10bdf3b9eee 100644 --- a/webtools/bugzilla/Bugzilla/BugMail.pm +++ b/webtools/bugzilla/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;