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:
@@ -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})) {
|
||||
|
||||
Reference in New Issue
Block a user