put code after good id

This commit is contained in:
Christophe Battarel 2021-11-17 16:52:04 +01:00
parent 330247ac38
commit 0afbff5d67

View File

@ -479,13 +479,6 @@ class Ticket extends CommonObject
$this->errors[] = "Error ".$this->db->lasterror();
}
if (!$error && ! empty($conf->global->TICKET_ADD_AUTHOR_AS_CONTACT)) {
// add creator as contributor
if ($this->add_contact($user->id, 'CONTRIBUTOR', 'internal') < 0) {
$error++;
}
}
if (!$error) {
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."ticket");
@ -499,6 +492,13 @@ class Ticket extends CommonObject
}
}
if (!$error && ! empty($conf->global->TICKET_ADD_AUTHOR_AS_CONTACT)) {
// add creator as contributor
if ($this->add_contact($user->id, 'CONTRIBUTOR', 'internal') < 0) {
$error++;
}
}
//Update extrafield
if (!$error) {
$result = $this->insertExtraFields();