mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
FHEMWEB: fixing space issue (Forum #24129);
git-svn-id: https://svn.fhem.de/fhem/trunk@6013 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
a0f7689dd5
commit
53614c49a0
@ -1108,11 +1108,12 @@ FW_roomOverview($)
|
||||
foreach my $r (@FW_roomsArr) {
|
||||
next if($r eq "hidden" || $FW_hiddenroom{$r});
|
||||
$FW_room = $r if(!$FW_room && $FW_ss);
|
||||
$r =~ s/</</g;
|
||||
$r =~ s/>/</g;
|
||||
push @list1, $r;
|
||||
$r =~ s/ /%20/g;
|
||||
push @list2, "$FW_ME?room=$r";
|
||||
my $lr = $r;
|
||||
$lr =~ s/</</g;
|
||||
$lr =~ s/>/</g;
|
||||
push @list1, $lr;
|
||||
$lr =~ s/ /%20/g;
|
||||
push @list2, "$FW_ME?room=$lr";
|
||||
}
|
||||
my @list = (
|
||||
"Everything", "$FW_ME?room=all",
|
||||
|
Loading…
x
Reference in New Issue
Block a user