Fix class Object\Item not found in Object\Post

This commit is contained in:
Hypolite Petovan 2017-12-07 23:36:33 -05:00
parent 4b0f83a12b
commit 79ed1568b6
1 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ class Item extends BaseObject
}
$item['pagedrop'] = $data['pagedrop'];
$child = new Item($item);
$child = new Post($item);
$this->addChild($child);
}
}
@ -472,14 +472,14 @@ class Item extends BaseObject
*
* @return mixed
*/
public function addChild(Item $item)
public function addChild(Post $item)
{
$item_id = $item->getId();
if (!$item_id) {
logger('[ERROR] Item::addChild : Item has no ID!!', LOGGER_DEBUG);
logger('[ERROR] Post::addChild : Item has no ID!!', LOGGER_DEBUG);
return false;
} elseif ($this->getChild($item->getId())) {
logger('[WARN] Item::addChild : Item already exists ('. $item->getId() .').', LOGGER_DEBUG);
logger('[WARN] Post::addChild : Item already exists ('. $item->getId() .').', LOGGER_DEBUG);
return false;
}
/*