commandref_modular.pl: sort by lowercase

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@12010 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-08-20 10:23:16 +00:00
parent bc0f5cb03d
commit 38cfd293a3

View File

@ -88,7 +88,7 @@ EOF
} }
print OUT "<table class='block summary class_$type'>\n"; print OUT "<table class='block summary class_$type'>\n";
my $rc = "odd"; my $rc = "odd";
for my $m (sort keys %modData) { for my $m (sort {uc($a) cmp uc($b)} keys %modData) {
next if(!$modData{$m}{type} || $modData{$m}{type} ne $type); next if(!$modData{$m}{type} || $modData{$m}{type} ne $type);
my $d = $modData{$m}{"summary$sfx"}; my $d = $modData{$m}{"summary$sfx"};
if(!$d) { if(!$d) {