From 4066287fb35f558240bd8ccdd90b10ab75212413 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Thu, 10 Jul 2003 12:24:42 +0000 Subject: 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 --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/BugMail.pm') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 16b44d6ff..3e0c34873 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -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; -- cgit v1.2.3-24-g4f1b