commandref_modular.pl: sort by lowercase
git-svn-id: https://svn.fhem.de/fhem/trunk@12010 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -88,7 +88,7 @@ EOF
|
||||
}
|
||||
print OUT "<table class='block summary class_$type'>\n";
|
||||
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);
|
||||
my $d = $modData{$m}{"summary$sfx"};
|
||||
if(!$d) {
|
||||
|
||||
Reference in New Issue
Block a user