mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
Fixing last XmlList-Fix
git-svn-id: https://svn.fhem.de/fhem/trunk@3075 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
9eaf0f56ec
commit
7b864a3c24
@ -766,7 +766,8 @@ AnalyzeCommand($$)
|
||||
if(!defined($cmds{$fn}) || !defined($cmds{$fn}{Fn})) {
|
||||
map { $fn = $_ if(lc($fn) eq lc($_)); } keys %modules;
|
||||
$fn = LoadModule($fn);
|
||||
return "Unknown command $fn, try help" if(!defined($cmds{lc($fn)}));
|
||||
$fn = lc($fn) if(defined($cmds{lc($fn)}));
|
||||
return "Unknown command $fn, try help" if(!defined($cmds{$fn}));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user