]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Following.php
Group selection: Respect "pubmail" and ignore atchived or blocked contacts
[friendica.git] / src / Module / Following.php
index 3a68e7e0afbd9bb21852e878e2decbd718e6e0ad..8eaa1835c2eb3eebb8c0080d70a40cce16ba5681 100644 (file)
@@ -14,7 +14,7 @@ use Friendica\Protocol\ActivityPub;
  */
 class Following extends BaseModule
 {
-       public static function rawContent()
+       public static function rawContent(array $parameters = [])
        {
                $a = self::getApp();
 
@@ -29,7 +29,7 @@ class Following extends BaseModule
                        throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = defaults($_REQUEST, 'page', null);
+               $page = $_REQUEST['page'] ?? null;
 
                $Following = ActivityPub\Transmitter::getFollowing($owner, $page);