]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 318842: Bugs with "New:" in the header have an extra space before "New:" - Patch...
authorlpsolit%gmail.com <>
Thu, 8 Dec 2005 17:52:04 +0000 (17:52 +0000)
committerlpsolit%gmail.com <>
Thu, 8 Dec 2005 17:52:04 +0000 (17:52 +0000)
Bugzilla/BugMail.pm

index 23e0035934843a9f7228bfd3f283860a5d06bec1..a679b377a9da9cf988fb5ebe3325bb67d65fa4ef 100644 (file)
@@ -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;