summaryrefslogtreecommitdiffstats
path: root/RelationSet.pm
diff options
context:
space:
mode:
Diffstat (limited to 'RelationSet.pm')
-rw-r--r--RelationSet.pm2
1 files changed, 1 insertions, 1 deletions
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)