]> git.mxchange.org Git - friendica.git/commitdiff
Fix class Object\Item not found in Object\Post
authorHypolite Petovan <mrpetovan@gmail.com>
Fri, 8 Dec 2017 04:36:33 +0000 (23:36 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Fri, 8 Dec 2017 04:36:33 +0000 (23:36 -0500)
src/Object/Post.php

index 8d56034a5e370eca285297d8c2d5bdd34c05f289..902435b513a004056bf3d7c0b6c73f710fd3bc08 100644 (file)
@@ -89,7 +89,7 @@ class Post extends BaseObject
                                }
 
                                $item['pagedrop'] = $data['pagedrop'];
-                               $child = new Item($item);
+                               $child = new Post($item);
                                $this->addChild($child);
                        }
                }
@@ -471,14 +471,14 @@ class Post 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;
                }
                /*