]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Item/Star.php
old boot.php functions replaced in src/module (2)
[friendica.git] / src / Module / Item / Star.php
index 8f444d54edfdf79c95eb99964622cf6f539226c5..02222cb03a0182b09c61e01329e38128c920d521 100644 (file)
@@ -50,13 +50,13 @@ class Star extends BaseModule
                $itemId = intval($this->parameters['id']);
 
 
-               $item = Post::selectFirstForUser(local_user(), ['uid', 'uri-id', 'starred'], ['uid' => [0, local_user()], 'id' => $itemId]);
+               $item = Post::selectFirstForUser(Session::getLocalUser(), ['uid', 'uri-id', 'starred'], ['uid' => [0, Session::getLocalUser()], 'id' => $itemId]);
                if (empty($item)) {
                        throw new HTTPException\NotFoundException();
                }
 
                if ($item['uid'] == 0) {
-                       $stored = Item::storeForUserByUriId($item['uri-id'], local_user());
+                       $stored = Item::storeForUserByUriId($item['uri-id'], Session::getLocalUser(), ['post-reason' => Item::PR_ACTIVITY]);
                        if (!empty($stored)) {
                                $item = Post::selectFirst(['starred'], ['id' => $stored]);
                                if (!DBA::isResult($item)) {