2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 23:36:37 +00:00

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:
rudolfkoenig 2016-08-20 10:23:16 +00:00
parent fd8ac87203
commit eb8cfe7c39

View File

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