2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-20 13:26:02 +00:00

98_freezemon.pm: Fixed typo in IsDisabled

git-svn-id: https://svn.fhem.de/fhem/trunk@16544 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
KernSani 2018-04-03 07:13:36 +00:00
parent 477306d6ea
commit ea2d8f1ce3

View File

@ -592,7 +592,7 @@ sub freezemon_Attr($) {
my $path = $1; my $path = $1;
$path =~ s/%L/$attr{global}{logdir}/g if ( $path =~ m/%/ && $attr{global}{logdir} ); $path =~ s/%L/$attr{global}{logdir}/g if ( $path =~ m/%/ && $attr{global}{logdir} );
if ( opendir( DH, $path ) ) { if ( opendir( DH, $path ) ) {
freezemon_install_log_wrapper($hash) if ( !isDisabled($name) ); freezemon_install_log_wrapper($hash) if ( !IsDisabled($name) );
closedir(DH); closedir(DH);
} }
else { else {