]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Contact/Contacts.php
Merge pull request #11002 from nupplaphil/feat/modules_constructor
[friendica.git] / src / Module / Contact / Contacts.php
index b5b501d6ea68c03e21b1846d02b28082f1394e10..bfe689c1e3997a3c1fac3710509c2287d4b17c30 100644 (file)
@@ -22,8 +22,8 @@ class Contacts extends BaseModule
                        throw new HTTPException\ForbiddenException();
                }
 
-               $cid = static::$parameters['id'];
-               $type = static::$parameters['type'] ?? 'all';
+               $cid = $this->parameters['id'];
+               $type = $this->parameters['type'] ?? 'all';
                $accounttype = $_GET['accounttype'] ?? '';
                $accounttypeid = User::getAccountTypeByString($accounttype);