X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FContact%2FRevoke.php;h=609ec65842e4a9394d78ab46af35264ce2b376af;hb=79235b6db1c9badd6c9602d54ad0d550e4bec2fd;hp=4ade2b146a25781d91af4a0ee735b766146de719;hpb=fdfa1f8630e320f4a5a1992898cd0efbe8faea53;p=friendica.git diff --git a/src/Module/Contact/Revoke.php b/src/Module/Contact/Revoke.php index 4ade2b146a..609ec65842 100644 --- a/src/Module/Contact/Revoke.php +++ b/src/Module/Contact/Revoke.php @@ -54,11 +54,11 @@ class Revoke extends BaseModule $this->dba = $dba; - if (!local_user()) { + if (!DI::userSession()->getLocalUserId()) { return; } - $data = Model\Contact::getPublicAndUserContactID($this->parameters['id'], local_user()); + $data = Model\Contact::getPublicAndUserContactID($this->parameters['id'], DI::userSession()->getLocalUserId()); if (!$this->dba->isResult($data)) { throw new HTTPException\NotFoundException($this->t('Unknown contact.')); } @@ -80,7 +80,7 @@ class Revoke extends BaseModule protected function post(array $request = []) { - if (!local_user()) { + if (!DI::userSession()->getLocalUserId()) { throw new HTTPException\UnauthorizedException(); } @@ -95,7 +95,7 @@ class Revoke extends BaseModule protected function content(array $request = []): string { - if (!local_user()) { + if (!DI::userSession()->getLocalUserId()) { return Login::form($_SERVER['REQUEST_URI']); }