01_FHEMWEB.pm: remove HTML tags from the title Attribute (Forum #87372)

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@16677 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-04-29 22:36:01 +00:00
parent fbfd08051f
commit e13436fad5

View File

@ -3086,7 +3086,9 @@ FW_devState($$@)
}
my $style = AttrVal($d, "devStateStyle", "");
$state =~ s/"//g;
$state =~ s/<.*?>/ /g; # remove HTML tags for the title
$txt = "<div id=\"$d\" $style title=\"$state\" class=\"col2\">$txt</div>";
my $type = $defs{$d}{TYPE};