From 664dc7a8661895a5e5f737fbf5bbcc18d0334e3a Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Thu, 8 Dec 2005 17:46:44 +0000 Subject: Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch by Adam Guthrie r=myk a=justdave --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 47db3c2bf..10bdf3b9e 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; -- cgit v1.2.3-24-g4f1b