]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 107580: Add space to front of "New:" designator on bugmail so it will always...
authorjustdave%syndicomm.com <>
Thu, 10 Jul 2003 12:24:42 +0000 (12:24 +0000)
committerjustdave%syndicomm.com <>
Thu, 10 Jul 2003 12:24:42 +0000 (12:24 +0000)
Patch by benc@netscape.com
r= myk, a=myk

Bugzilla/BugMail.pm

index 16b44d6ff387341e148e7c3cc1c81999e9a8b859..3e0c348739f8e95d78c6f57b7724ece5b5b5bf17 100644 (file)
@@ -831,7 +831,7 @@ sub NewProcessOnePerson ($$$$$$$$$$$$$) {
 # since if the bug didn't change, you wouldn't be getting mail
 # in the first place! see http://bugzilla.mozilla.org/show_bug.cgi?id=29820 
 # for details.
-    $substs{"neworchanged"} = $isnew ? 'New: ' : '';
+    $substs{"neworchanged"} = $isnew ? ' New: ' : '';
     $substs{"to"} = $person;
     $substs{"cc"} = '';
     $substs{"bugid"} = $id;