mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Sort names case insensitively in the authors list.
This commit is contained in:
parent
3de3459e59
commit
0b1a210659
@ -47,7 +47,7 @@ commits, and other useful contributions to InspIRCd. These people, ordered by
|
||||
the number of contributions they have made, are:
|
||||
EOH
|
||||
|
||||
for my $author (sort { $authors{$b} <=> $authors{$a} or $a cmp $b } keys %authors) {
|
||||
for my $author (sort { $authors{$b} <=> $authors{$a} or lc($a) cmp lc($b) } keys %authors) {
|
||||
next if $author eq 'InspIRCd Robot <noreply@inspircd.org>';
|
||||
say $fh " * $author";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user