]> git.mxchange.org Git - friendica.git/commitdiff
Fixed:
authorRoland Häder <roland@mxchange.org>
Mon, 24 Oct 2022 16:27:38 +0000 (18:27 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 24 Oct 2022 16:29:28 +0000 (18:29 +0200)
- Added missing `()` to `getRemoteUserId` which is a method, and not a property
- `Undefined property: Friendica\Core\Session\Model\UserSession::$getRemoteUserId in /var/www/.../htdocs/mod/display.php on line 192`

mod/display.php
mod/redir.php

index d04b878c4b578863b701e462cab401ce9e5c66e1..4a48eb839cab3375dbee34be6432e08a50cc856d 100644 (file)
@@ -69,10 +69,10 @@ function display_init(App $a)
                }
 
                // Is this item private but could be visible to the remove visitor?
-               if (!DBA::isResult($item) && DI::userSession()->getRemoteUserId) {
+               if (!DBA::isResult($item) && DI::userSession()->getRemoteUserId()) {
                        $item = Post::selectFirst($fields, ['guid' => DI::args()->getArgv()[1], 'private' => Item::PRIVATE, 'origin' => true]);
                        if (DBA::isResult($item)) {
-                               if (!Contact::isFollower(DI::userSession()->getRemoteUserId, $item['uid'])) {
+                               if (!Contact::isFollower(DI::userSession()->getRemoteUserId(), $item['uid'])) {
                                        $item = null;
                                } else {
                                        $item_user = $item['uid'];
@@ -189,9 +189,9 @@ function display_content(App $a, $update = false, $update_uid = 0)
                                }
                        }
 
-                       if (($parent_uri_id == 0) && DI::userSession()->getRemoteUserId) {
+                       if (($parent_uri_id == 0) && DI::userSession()->getRemoteUserId()) {
                                $item = Post::selectFirst($fields, ['guid' => DI::args()->getArgv()[1], 'private' => Item::PRIVATE, 'origin' => true]);
-                               if (DBA::isResult($item) && Contact::isFollower(DI::userSession()->getRemoteUserId, $item['uid'])) {
+                               if (DBA::isResult($item) && Contact::isFollower(DI::userSession()->getRemoteUserId(), $item['uid'])) {
                                        $uri_id = $item['uri-id'];
                                        $parent_uri_id = $item['parent-uri-id'];
                                }
index cc4dc1c0c1549bc49a80c8d9e8fa5677b777a193..903c6b2a354f074b7f5de0caa039c167b14f2e22 100644 (file)
@@ -82,7 +82,7 @@ function redir_init(App $a) {
                }
        }
 
-       if (DI::userSession()->getRemoteUserId) {
+       if (DI::userSession()->getRemoteUserId()) {
                $host = substr(DI::baseUrl()->getUrlPath() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : ''), strpos(DI::baseUrl()->getUrlPath(), '://') + 3);
                $remotehost = substr($contact['addr'], strpos($contact['addr'], '@') + 1);