From 005a5bcb3e4a2244ca77213edf441991bcac161d Mon Sep 17 00:00:00 2001 From: markusbloch <> Date: Tue, 3 Dec 2013 17:04:49 +0000 Subject: [PATCH] FB_CALLMONITOR: replace & to & at reverse search git-svn-id: https://svn.fhem.de/fhem/trunk@4318 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/72_FB_CALLMONITOR.pm | 1 + 2 files changed, 2 insertions(+) diff --git a/fhem/CHANGED b/fhem/CHANGED index 6de96105e..ae842a567 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 diff --git a/fhem/FHEM/72_FB_CALLMONITOR.pm b/fhem/FHEM/72_FB_CALLMONITOR.pm index f7ccb46b5..66b215f52 100755 --- a/fhem/FHEM/72_FB_CALLMONITOR.pm +++ b/fhem/FHEM/72_FB_CALLMONITOR.pm @@ -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;