2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

01_FHEMWEB: revert \n -> <br>

git-svn-id: https://svn.fhem.de/fhem/trunk@8676 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-06-01 10:43:24 +00:00
parent 947834bc50
commit 9cf2a8a939

View File

@ -2623,7 +2623,7 @@ FW_htmlEscape($)
$txt =~ s/&/&amp;/g;
$txt =~ s/</&lt;/g;
$txt =~ s/>/&gt;/g;
$txt =~ s/\n/<br>/g;
# $txt =~ s/\n/<br>/g;
return $txt;
}