From 539dccaf5bb64aec3b62794a0524df4901b3c203 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sat, 3 Nov 2001 10:05:43 +0000 Subject: Fix for bug 105773: Email addresses in the CC list are now sorted case-insensitively Patch by Adam Kennedy r= justdave x2 --- RelationSet.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RelationSet.pm') diff --git a/RelationSet.pm b/RelationSet.pm index bfd572400..8668519b9 100644 --- a/RelationSet.pm +++ b/RelationSet.pm @@ -248,7 +248,7 @@ sub toArrayOfStrings { push @result, &::DBID_to_name($i); } - return sort(@result); + return sort { lc($a) cmp lc($b) } @result; } # return this set in string form (comma-separated and sorted) -- cgit v1.2.3-24-g4f1b