diff options
author | justdave%syndicomm.com <> | 2001-11-03 11:05:43 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-11-03 11:05:43 +0100 |
commit | 539dccaf5bb64aec3b62794a0524df4901b3c203 (patch) | |
tree | 5d2fb02b5cc1bd9177d5d527cd7336362cb396c3 /Bugzilla | |
parent | 1477ad4e1ab6a71d7ed40a66314cd34471ad86f4 (diff) | |
download | bugzilla-539dccaf5bb64aec3b62794a0524df4901b3c203.tar.gz bugzilla-539dccaf5bb64aec3b62794a0524df4901b3c203.tar.xz |
Fix for bug 105773: Email addresses in the CC list are now sorted case-insensitively
Patch by Adam Kennedy <bugzilla@ali.as>
r= justdave x2
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/RelationSet.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/RelationSet.pm b/Bugzilla/RelationSet.pm index bfd572400..8668519b9 100644 --- a/Bugzilla/RelationSet.pm +++ b/Bugzilla/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) |