Skip to content
Snippets Groups Projects
Commit ea949437 authored by tysauron's avatar tysauron
Browse files

For not error Undefined property: stdClass::$id

parent 81d2d120
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ class ActionComm extends CommonObject
$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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment