]> git.mxchange.org Git - friendica.git/commitdiff
This is a better place
authorMichael <heluecht@pirati.ca>
Fri, 8 Sep 2017 07:08:06 +0000 (07:08 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 8 Sep 2017 07:08:06 +0000 (07:08 +0000)
include/items.php

index df132027101678e840d74a612063fc85ea90ccdc..ec4c986a18303c6715f218e96025c14db62fc60d 100644 (file)
@@ -1595,13 +1595,6 @@ function item_is_remote_self($contact, &$datarray) {
                        $datarray['author-link']   = $datarray['owner-link'];
                        $datarray['author-avatar'] = $datarray['owner-avatar'];
 
-                       // Trigger automatic reactions for addons
-                       $datarray['api_source'] = true;
-
-                       // We have to tell the hooks who we are - this really should be improved
-                       $_SESSION["authenticated"] = true;
-                       $_SESSION["uid"] = $contact['uid'];
-
                        unset($datarray['created']);
                        unset($datarray['edited']);
                }
@@ -1627,6 +1620,13 @@ function item_is_remote_self($contact, &$datarray) {
                $datarray["app"] = "Feed";
        }
 
+       // Trigger automatic reactions for addons
+       $datarray['api_source'] = true;
+
+       // We have to tell the hooks who we are - this really should be improved
+       $_SESSION["authenticated"] = true;
+       $_SESSION["uid"] = $contact['uid'];
+
        return true;
 }