From cb09a93cdc18933ebf5ffa44ea29b896b6813de7 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Thu, 23 May 2013 18:53:11 +0000 Subject: [PATCH] remove the "continue" text sen in the background when using the .gplot editor git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@3217 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/01_FHEMWEB.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FHEM/01_FHEMWEB.pm b/FHEM/01_FHEMWEB.pm index c147ee51f..226afe4f0 100755 --- a/FHEM/01_FHEMWEB.pm +++ b/FHEM/01_FHEMWEB.pm @@ -456,7 +456,10 @@ FW_answerCall($) my $localType; ($localType, $FW_RET) = &{$h->{FUNC}}($arg); use strict "refs"; - last if($FW_RET && $FW_RET eq "continue"); # Continue displaying the data + if($FW_RET && $FW_RET eq "continue") { # Continue displaying the data + $FW_RET=""; + last; + } $FW_RETTYPE = $localType; return defined($FW_RETTYPE) ? 0 : -1; }