diff --git a/fhem/FHEM/10_CUL_HM.pm b/fhem/FHEM/10_CUL_HM.pm index 158baa49f..58ab1eea0 100755 --- a/fhem/FHEM/10_CUL_HM.pm +++ b/fhem/FHEM/10_CUL_HM.pm @@ -6857,8 +6857,8 @@ sub CUL_HM_tempListTmpl(@) { ################################################## foreach my $p (keys %dlf){ my @unprg = grep !/^$/,map {$dlf{$p}{$_}?"":$_} keys %{$dlf{$p}}; my $cnt = scalar @unprg; - if ($cnt > 0 && $cnt < 7) {$ret .= "\n incomplete template for prog $p days:".join(",",@unprg);} - elsif ($cnt == 7) {$ret .= "\n unprogrammed prog $p ";} + if ($cnt > 0 && $cnt < 7) {$ret .= "\n $name: incomplete template for prog $p days:".join(",",@unprg);} + elsif ($cnt == 7) {$ret .= "\n $name: unprogrammed prog $p ";} } } foreach (@exec){ diff --git a/fhem/FHEM/98_HMinfo.pm b/fhem/FHEM/98_HMinfo.pm index 74438cd8c..7d42be54c 100644 --- a/fhem/FHEM/98_HMinfo.pm +++ b/fhem/FHEM/98_HMinfo.pm @@ -818,7 +818,7 @@ sub HMinfo_GetFn($@) {######################################################### devspec2array("model=HM.*-TC.*:FILTER=chanNo=02:FILTER=tempListTmpl=.*")); my @tlr; foreach my $e (@td){ - my $tr = CUL_HM_tempListTmpl($e,"verify",AttrVal($e,"tempListTmpl","tempList.cfg:$e")); + my $tr = CUL_HM_tempListTmpl($e,"verify",AttrVal($e,"tempListTmpl",AttrVal($hash->{NAME},"configDir",".")."/tempList.cfg:$e")); push @tlr,$tr if($tr); } $ret .= "\n\n templist mismatch \n ".join("\n ",@tlr) if (@tlr);