Sort Memberlist Case Insensitve Mod
1.0
In the admin area of YaBB you have the option to rebuild the memberlist. If you make it the memberlist is
sorted, but case sensitive. After the sorting new members are added at the end of the list.
This mod makes the sorting case insensitive.
This mod modifies Admin.pl.
It different from the show memberlist case insensitive mod (http://www.philtalk.de/mods/show_memberlist_case_insensitive.mod),
but both complement one another.
Uwe Wiedemann
http://www.philtalk.de/
Sources/Admin.pl
sub RebuildMemList {
# sort memberlist case insensitive mod
sub case_insensitive {
uc($::a) cmp uc ($::b);
}
# end sort memberlist case insensitive mod
foreach $line (sort @contents){
# sort memberlist case insensitive mod
foreach $line (sort case_insensitive @contents){
# end sort memberlist case insensitive mod