From ab3e79e8be575414264d7447958c404fc6e1a0bf 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 git-svn-id: svn://10.0.0.236/trunk@185796 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/Bugzilla/BugMail.pm b/mozilla/webtools/bugzilla/Bugzilla/BugMail.pm index 47db3c2bfbf..10bdf3b9eee 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/BugMail.pm +++ b/mozilla/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;