mirror of
https://github.com/friendica/friendica
synced 2025-04-26 07:50:15 +00:00
Replace DI::apiResponse()->exit()
with $this->response->exit()
This commit is contained in:
parent
2dc60cfd33
commit
a88cc8d5c8
22 changed files with 26 additions and 26 deletions
|
@ -48,6 +48,6 @@ class Show extends BaseApi
|
|||
// "uid" is only needed for some internal stuff, so remove it from here
|
||||
unset($user_info['uid']);
|
||||
|
||||
DI::apiResponse()->exit('user', ['user' => $user_info], $this->parameters['extension'] ?? null);
|
||||
$this->response->exit('user', ['user' => $user_info], $this->parameters['extension'] ?? null);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue