mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
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:
parent
bc0f5cb03d
commit
38cfd293a3
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user