Do a case-insensitive sort before printing checkins.

Bug #242360 r=timeless
This commit is contained in:
cls%seawood.org 2004-09-23 04:43:46 +00:00
Родитель 5effccf536
Коммит b0eeb06077
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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})) {