This commit is contained in:
Florian HENRY 2021-03-03 22:16:35 +01:00
parent 91b93ac7ce
commit 04c6d5dd8f

View File

@ -560,7 +560,7 @@ class ActionComm extends CommonObject
$sql .= (!empty($this->errors_to) ? "'".$this->db->escape($this->errors_to)."'" : "null").", ";
$sql .= (!empty($this->num_vote) ? (int) $this->num_vote : "null").", ";
$sql .= (!empty($this->event_paid) ? (int) $this->event_paid : 0).", ";
$sql .= (!empty($this->status) ? (int) $this->status : "null");
$sql .= (!empty($this->status) ? (int) $this->status : "0");
$sql .= ")";
dol_syslog(get_class($this)."::add", LOG_DEBUG);