diff options
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) |