01_FHEMWEM.pm: do not create an artificial "all" room (Forum #71864)

git-svn-id: https://svn.fhem.de/fhem/trunk@14290 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2017-05-14 19:31:14 +00:00
parent 4ac2c5dabf
commit 7d75571617

View File

@@ -1771,8 +1771,8 @@ FW_showRoom()
# array of all device names in the room (exception weblinks without group # array of all device names in the room (exception weblinks without group
# attribute) # attribute)
my @devs= grep { ($FW_rooms{$FW_room}{$_}||$FW_room eq "all") && my @devs= grep { (($FW_rooms{$FW_room} && $FW_rooms{$FW_room}{$_}) ||
!IsIgnored($_) } keys %defs; $FW_room eq "all") && !IsIgnored($_) } keys %defs;
my (%group, @atEnds, %usuallyAtEnd, %sortIndex); my (%group, @atEnds, %usuallyAtEnd, %sortIndex);
foreach my $dev (@devs) { foreach my $dev (@devs) {
if($modules{$defs{$dev}{TYPE}}{FW_atPageEnd}) { if($modules{$defs{$dev}{TYPE}}{FW_atPageEnd}) {