Bugfix for disabled notify

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@57 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2007-05-01 06:44:59 +00:00
parent c0cc4ab625
commit 46194b1023
3 changed files with 8 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ notify_Exec($$)
my ($log, $dev) = @_;
my $ln = $log->{NAME};
return if($attr{$ln} && $attr{$ln}{disable});
return "" if($attr{$ln} && $attr{$ln}{disable});
my $n = $dev->{NAME};
my $re = $log->{REGEXP};