]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Post/Share.php
Move System::httpError to BaseModule->httpError
[friendica.git] / src / Module / Post / Share.php
index 210a3fa6bc9b55ca208bffe923b9f3478b5455db..0219eb99538feab10414a4b375df89e82f403602 100644 (file)
@@ -57,12 +57,12 @@ class Share extends \Friendica\BaseModule
        {
                $post_id = $this->parameters['post_id'];
                if (!$post_id || !$this->session->getLocalUserId()) {
-                       System::httpError(403);
+                       $this->httpError(403);
                }
 
                $item = Post::selectFirst(['private', 'body', 'uri', 'plink', 'network'], ['id' => $post_id]);
                if (!$item || $item['private'] == Item::PRIVATE) {
-                       System::httpError(404);
+                       $this->httpError(404);
                }
 
                $shared = $this->contentItem->getSharedPost($item, ['uri']);