From 020a16b1c7ee66b86652afadb8251db68fd67863 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Sun, 13 Mar 2011 08:47:19 +0000 Subject: [PATCH] small HomeMatic change git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@859 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- webfrontend/pgm2/01_FHEMWEB.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/webfrontend/pgm2/01_FHEMWEB.pm b/webfrontend/pgm2/01_FHEMWEB.pm index b3540e872..7c58cff8d 100755 --- a/webfrontend/pgm2/01_FHEMWEB.pm +++ b/webfrontend/pgm2/01_FHEMWEB.pm @@ -494,9 +494,7 @@ FW_updateHashes() %FW_types = (); foreach my $d (sort keys %defs ) { next if(IsIgnored($d)); - my $t = $defs{$d}{TYPE}; - my $st = AttrVal($d, "subType", undef); - $t .= ":$st" if($st); + my $t = AttrVal($d, "subType", $defs{$d}{TYPE}); $FW_types{$t}{$d} = 1; }