diff --git a/fhem/CHANGED b/fhem/CHANGED index 736caf4f8..a85babccd 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # 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. + - bugfix: 98_DOIFtools: fixed line break in DOIFtoolsLog - feature: 72_FB_CALLMONITOR: support for contact images and download of all available contact images from FritzBox phonebooks via TR-064 API. diff --git a/fhem/FHEM/98_DOIFtools.pm b/fhem/FHEM/98_DOIFtools.pm index 96dd905d2..a2cb72bb4 100644 --- a/fhem/FHEM/98_DOIFtools.pm +++ b/fhem/FHEM/98_DOIFtools.pm @@ -405,8 +405,8 @@ sub DOIFtools_logWrapper($) { FW_pO "
"; FW_pO "
" if($FW_ss); - FW_pO "
jump to: the end top listing
"; - my $suffix = "
jump to: the top top listing
".($FW_ss ? "
" : "")."
"; + FW_pO "
jump to: the endtop listing
"; + my $suffix = "
jump to: the toptop listing
".($FW_ss ? "" : "").""; my $reverseLogs = AttrVal($FW_wname, "reverseLogs", 0); if(!$reverseLogs) { @@ -605,7 +605,9 @@ sub DOIFtools_Notify($$) { my $next = $hash->{helper}{counter}{0} + 1; $trig .= $prev ? "jump to: prev  next Listing
" : "jump to: prev  next Listing
"; $trig .= "DOIF-Version: ".ReadingsVal($pn,"DOIF_version","n/a")."
"; - $trig .= CommandList(undef,$sn); + my $trigtmp = CommandList(undef,$sn); + $trigtmp =~ s/\n|\r/
/g; + $trig .= $trigtmp; foreach my $itm (keys %defs) { $trig =~ s,([\[\" ])$itm([\"\:\] ]),$1$itm$2,g; }