FIX : missing "$this->id" in "fetch" function

This commit is contained in:
atm-lena 2019-10-07 11:26:10 +02:00
parent d9aa816197
commit 8c024b3786

View File

@ -334,6 +334,7 @@ class Link extends CommonObject
if($this->db->num_rows($resql) > 0)
{
$obj = $this->db->fetch_object($resql);
$this->id = $obj->rowid;
$this->entity = $obj->entity;
$this->datea = $this->db->jdate($obj->datea);
$this->url = $obj->url;