Bug 107580: Add space to front of "New:" designator on bugmail so it will always…

Bug 107580: Add space to front of "New:" designator on bugmail so it will always sort before changed mails in an alphabetical subject listing in user mailboxes. Patch by benc@netscape.com r= myk, a=myk
parent bbb4e677
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment