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

Merge pull request #3682 from tysauron/develop

For not error Undefined property: stdClass::$id
parents ab4b4235 ea949437
Branches
Tags
No related merge requests found
...@@ -220,7 +220,7 @@ class ActionComm extends CommonObject ...@@ -220,7 +220,7 @@ class ActionComm extends CommonObject
$this->userassigned[$tmpid]=array('id'=>$tmpid); $this->userassigned[$tmpid]=array('id'=>$tmpid);
} }
if (is_object($this->contact) && $this->contact->id > 0 && ! ($this->contactid > 0)) $this->contactid = $this->contact->id; // For backward compatibility. Using this->contact->xx is deprecated if (is_object($this->contact) && isset($this->contact->id) && $this->contact->id > 0 && ! ($this->contactid > 0)) $this->contactid = $this->contact->id; // For backward compatibility. Using this->contact->xx is deprecated
$userownerid=$this->userownerid; $userownerid=$this->userownerid;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment