Do a case-insensitive sort before printing checkins.

Bug #242360 r=timeless


git-svn-id: svn://10.0.0.236/trunk@162690 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2004-09-23 04:43:46 +00:00
parent 58782e7e04
commit 9bec63b526

View File

@@ -162,7 +162,7 @@ Can't contact the directory server at $ldapserver:$ldapport</font>\n";
<th colspan=2>Who</th><th>What</th>\n";
print "<th>How to contact</th>\n" if $ldapserver;
foreach $p (@peoplelist) {
foreach $p (sort {uc($a) cmp uc($b)} @peoplelist) {
my ($uname, $namepart, $extra) = ('', '', '');
if (exists($closedcheckin{$p})) {