Fix missing the nostop tag

This commit is contained in:
Laurent Destailleur 2017-09-01 16:54:06 +02:00
parent e663314cb1
commit 920d6270c3

View File

@ -42,6 +42,7 @@ class CSMSFile
var $priority; var $priority;
var $class; var $class;
var $message; var $message;
var $nostop;
/** /**
@ -81,6 +82,7 @@ class CSMSFile
$this->priority=$priority; $this->priority=$priority;
$this->class=$class; $this->class=$class;
$this->message=$msg; $this->message=$msg;
$this->nostop=false;
} }
@ -119,6 +121,7 @@ class CSMSFile
$sms->deferred=$this->deferred; $sms->deferred=$this->deferred;
$sms->priority=$this->priority; $sms->priority=$this->priority;
$sms->class=$this->class; $sms->class=$this->class;
$sms->nostop=$this->nostop;
$res=$sms->SmsSend(); $res=$sms->SmsSend();
if ($res <= 0) if ($res <= 0)
@ -148,6 +151,7 @@ class CSMSFile
$sms->priority=$this->priority; $sms->priority=$this->priority;
$sms->class=$this->class; $sms->class=$this->class;
$sms->message=$this->message; $sms->message=$this->message;
$sms->nostop=$this->nostop;
$res=$sms->SmsSend(); $res=$sms->SmsSend();
$this->error = $sms->error; $this->error = $sms->error;