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
This commit is contained in:
rudolfkoenig 2013-05-23 18:53:11 +00:00
parent e6664af5bf
commit cb09a93cdc

View File

@ -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;
}