FIX excess comma

This commit is contained in:
Florian Mortgat 2020-12-04 10:10:44 +01:00
parent c752bfe1a6
commit 7685ed8295

View File

@ -168,7 +168,7 @@ class Opensurveysondage extends CommonObject
$sql .= " ".$this->db->escape($this->allow_comments).","; $sql .= " ".$this->db->escape($this->allow_comments).",";
$sql .= " ".$this->db->escape($this->allow_spy).","; $sql .= " ".$this->db->escape($this->allow_spy).",";
$sql .= " '".$this->db->escape($this->sujet)."',"; $sql .= " '".$this->db->escape($this->sujet)."',";
$sql .= " '".$conf->entity."',"; $sql .= " ".$conf->entity;
$sql .= ")"; $sql .= ")";
$this->db->begin(); $this->db->begin();