From b1849e286543abf0a932760572560d35a15bd730 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Thu, 10 Jul 2003 05:24:42 +0000 Subject: [PATCH] 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 --- webtools/bugzilla/Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/Bugzilla/BugMail.pm b/webtools/bugzilla/Bugzilla/BugMail.pm index 16b44d6ff387..3e0c348739f8 100644 --- a/webtools/bugzilla/Bugzilla/BugMail.pm +++ b/webtools/bugzilla/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;