]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Profile/Contacts.php
Merge pull request #11452 from atjn/manifest-icons
[friendica.git] / src / Module / Profile / Contacts.php
index 19dbe4cddb3909d087c7d7f33298748420fefe04..544e1a24099d056323170273bb12aa6d4e14454c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -34,7 +34,7 @@ use Friendica\Network\HTTPException;
 
 class Contacts extends Module\BaseProfile
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
                        throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
@@ -42,8 +42,8 @@ class Contacts extends Module\BaseProfile
 
                $a = DI::app();
 
-               $nickname = $parameters['nickname'];
-               $type = $parameters['type'] ?? 'all';
+               $nickname = $this->parameters['nickname'];
+               $type = $this->parameters['type'] ?? 'all';
 
                $profile = Model\Profile::load($a, $nickname);
                if (empty($profile)) {
@@ -52,7 +52,7 @@ class Contacts extends Module\BaseProfile
 
                $is_owner = $profile['uid'] == local_user();
 
-               if (!empty($profile['hide-friends']) && !$is_owner) {
+               if ($profile['hide-friends'] && !$is_owner) {
                        throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
                }