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