2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-21 20:06:18 +00:00

FHEM/01_FHEMWEB.pm: multiline fix for <html> attribute values (Forum #122261)

git-svn-id: https://svn.fhem.de/fhem/trunk@24822 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-08-02 14:23:06 +00:00
parent 98df1c1ed5
commit 5b579a8b5f

View File

@ -1408,7 +1408,7 @@ FW_makeTable($$$@)
FW_pO "<td><div $ifidts>$t</div></td>";
}
} else {
if($val =~ m,^<html>(.*)</html>$,) {
if($val =~ m,^<html>(.*)</html>$,s) {
$val = $1;
} else {
$val = FW_htmlEscape($val);