]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Post/Share.php
Use the post language for the language detection / config for quality
[friendica.git] / src / Module / Post / Share.php
index db95c38c947215d2e7d36e21df88d8099a404a28..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']);
@@ -74,6 +74,6 @@ class Share extends \Friendica\BaseModule
                        $content = '[share]' . $item['uri'] . '[/share]';
                }
 
-               System::httpExit($content);
+               $this->httpExit($content);
        }
 }