2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-01 01:09:47 +00:00

01_FHEMWEB.pm: do not show the room, if requested by the URL and forbidden via hiddenroom (Forum #92433)

git-svn-id: https://svn.fhem.de/fhem/trunk@17621 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-10-26 10:32:52 +00:00
parent 0414946713
commit 253668aa7a

View File

@ -1821,7 +1821,7 @@ FW_sortIndex($)
sub
FW_showRoom()
{
return 0 if(!$FW_room);
return 0 if(!$FW_room || $FW_hiddenroom{$FW_room});
%FW_hiddengroup = ();
foreach my $r (split(",",AttrVal($FW_wname, "hiddengroup", ""))) {