mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
FB_CALLMONITOR: replace & to & at reverse search
git-svn-id: https://svn.fhem.de/fhem/trunk@4318 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7c75a0dfec
commit
005a5bcb3e
@ -1,6 +1,7 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- SVN
|
||||
- feature: FB_CALLMONITOR: replace & to & at reverse search
|
||||
- feature: new module 33_readingsProxy to make (a subset of) a reading
|
||||
from one device available as a new device. can be used to
|
||||
separate channels from 1-wire, EnOcean or SWAP multichannel
|
||||
|
@ -530,6 +530,7 @@ sub FB_CALLMONITOR_html2txt($)
|
||||
my ($string) = @_;
|
||||
|
||||
$string =~ s/ / /g;
|
||||
$string =~ s/&/&/g;
|
||||
$string =~ s/(\xe4|ä)/ä/g;
|
||||
$string =~ s/(\xc4|Ä)/Ä/g;
|
||||
$string =~ s/(\xf6|ö)/ö/g;
|
||||
|
Loading…
Reference in New Issue
Block a user