Skip to content
Snippets Groups Projects
Commit 937a98d0 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Removed duplicate update

parent 66d271c1
No related branches found
No related tags found
No related merge requests found
......@@ -872,9 +872,6 @@ class User extends CommonObject
{
$sql = "UPDATE ".MAIN_DB_PREFIX."user";
$sql.= " SET fk_socpeople=".$contact->id;
$sql.= ", office_phone = '".$this->db->escape($this->office_phone)."'";
$sql.= ", office_fax = '".$this->db->escape($this->office_fax)."'";
$sql.= ", user_mobile = '".$this->db->escape($this->user_mobile)."'";
if ($contact->socid) $sql.=", fk_societe=".$contact->socid;
$sql.= " WHERE rowid=".$this->id;
$resql=$this->db->query($sql);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment