98_XmlList.pm: remove the useless e from the substitute

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@9463 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2015-10-16 12:40:04 +00:00
parent b3953621f7
commit e48806f36d

View File

@@ -33,7 +33,7 @@ XmlEscape($)
# Not needed since we've gone UTF-8
# $a =~ s/([^ -~])/sprintf("&#%02x;", ord($1))/ge;
# Esacape characters 0-31, as they are not part of UTF-8
$a =~ s/([\x00-\x07])//ge; # Forum #37955. Chrome wont accept 5 & 6.
$a =~ s/([\x00-\x07])//g; # Forum #37955. Chrome wont accept 5 & 6.
return $a;
}