]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/DFRN/Poll.php
Changes:
[friendica.git] / src / Module / DFRN / Poll.php
index 7b1535c413706a59e715e0d176cba6195e7df3dd..d05298a79d97f556f0d4ca93c133a0fec3091294 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2023, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -37,17 +37,17 @@ class Poll extends BaseModule
        {
                $owner = User::getByNickname(
                        $this->parameters['nickname'] ?? '',
-                       ['nickname', 'blocked', 'account_expired', 'account_removed', 'hidewall']
+                       ['nickname', 'blocked', 'account_expired', 'account_removed']
                );
                if (!$owner || $owner['account_expired'] || $owner['account_removed']) {
                        throw new HTTPException\NotFoundException($this->t('User not found.'));
                }
 
-               if ($owner['blocked'] || $owner['hidewall']) {
+               if ($owner['blocked']) {
                        throw new HTTPException\UnauthorizedException($this->t('Access to this profile has been restricted.'));
                }
 
                $last_update = $request['last_update'] ?? '';
-               System::httpExit(OStatus::feed($owner['nickname'], $last_update, 10) ?? '', Response::TYPE_ATOM);
+               $this->httpExit(OStatus::feed($owner['nickname'], $last_update, 10) ?? '', Response::TYPE_ATOM);
        }
 }