FW_hiddenroom bug

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1022 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2011-09-24 13:30:13 +00:00
parent 2bdb9a8a31
commit 9c4ce6fb67

View File

@@ -547,7 +547,7 @@ FW_makeTable($$)
my $val = $hash->{$n};
if($n eq "DEF" && !$FW_hiddenroom{"input"}) {
if($n eq "DEF" && !$FW_hiddenroom{input}) {
FW_makeEdit($name, $n, $val);
} else {
@@ -653,6 +653,7 @@ FW_roomOverview($)
{
my ($cmd) = @_;
%FW_hiddenroom = ();
foreach my $r (split(",",AttrVal($FW_wname, "hiddenroom", ""))) {
$FW_hiddenroom{$r} = 1;
}