2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 11:26:03 +00:00

01_FHEMWEB.pl: fix defaultroom for smallScreen

git-svn-id: https://svn.fhem.de/fhem/trunk@7132 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-12-05 19:23:33 +00:00
parent 6df5668813
commit de74df43b4

View File

@ -1142,7 +1142,8 @@ FW_roomOverview($)
# Rooms and other links
foreach my $r (@FW_roomsArr) {
next if($r eq "hidden" || $FW_hiddenroom{$r});
$FW_room = $r if(!$FW_room && $FW_ss);
$FW_room = AttrVal($FW_wname, "defaultRoom", $r)
if(!$FW_room && $FW_ss);
my $lr = $r;
$lr =~ s/</&lt;/g;
$lr =~ s/>/&lt;/g;