Show Memberlist Case Insensitve Mod
1.0
In the show member list area you have the option to show the memberlist alphabetically. If you use this the memberlist is
sorted case sensitive. This mod makes the sorting case insensitive.
This mod modifies Memberlist.pl. It different from the sort memberlist case insensitive mod (http://www.philtalk.de/mods/sort_memberlist_case_insensitive.mod),
but both complement one another.
This mod works with SP 1.
Uwe Wiedemann
http://www.philtalk.de/
Sources/Memberlist.pl
sub MLByLetter {
# show memberlist case insensitive mod
sub case_insensitive {
uc($::a) cmp uc ($::b);
}
# end show memberlist case insensitive mod
@ToShow = sort(@ToShow);
# show memberlist case insensitive mod
# @ToShow = sort(@ToShow);
@ToShow = (sort case_insensitive @ToShow);
# end show memberlist case insensitive mod