98_HMConfig: check for preferred io lists

git-svn-id: https://svn.fhem.de/fhem/trunk@7086 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876
2014-11-29 09:40:41 +00:00
parent 3bee036f70
commit 034dac0698

View File

@@ -527,8 +527,9 @@ sub HMinfo_paramCheck(@) { ####################################################
}
else{
$ioHmId = $defs{$ioCCU}{DEF};
if ($prefIO && !$defs{$prefIO}){
push @perfIoUndef,"$eName ->$prefIO";
if ($prefIO){
my @pIOa = split(",",$prefIO);
push @perfIoUndef,"$eName ->$_" foreach ( grep {!$defs{$_}} @pIOa);
}
}
}