mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +00:00
sorting bug fix
git-svn-id: https://svn.fhem.de/fhem/trunk@3643 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
d5e5a6325f
commit
a19f89bee4
@ -580,7 +580,7 @@ SWAP_Get($@)
|
||||
}
|
||||
}
|
||||
|
||||
foreach my $cmd ( sort { $a <=> $b } keys ( %{$gl} ) ) {
|
||||
foreach my $cmd ( sort keys ( %{$gl} ) ) {
|
||||
$list .= " ";
|
||||
$list .= $cmd;
|
||||
$list .= ":noArg" if( !$gl->{$cmd} );
|
||||
|
Loading…
x
Reference in New Issue
Block a user