mirror of
https://github.com/friendica/friendica
synced 2025-04-26 07:10:12 +00:00
Refactoring Profile:: selectors
This commit is contained in:
parent
930ce855f8
commit
2f5928f43a
2 changed files with 20 additions and 10 deletions
|
@ -6206,13 +6206,13 @@ function api_friendica_profile_show($type)
|
|||
|
||||
// get data of the specified profile id or all profiles of the user if not specified
|
||||
if ($profile_id != 0) {
|
||||
$r = Profile::select(api_user(), $profile_id);
|
||||
$r = Profile::getById(api_user(), $profile_id);
|
||||
// error message if specified gid is not in database
|
||||
if (!DBA::isResult($r)) {
|
||||
throw new BadRequestException("profile_id not available");
|
||||
}
|
||||
} else {
|
||||
$r = Profile::select(api_user());
|
||||
$r = Profile::getListByUser(api_user());
|
||||
}
|
||||
// loop through all returned profiles and retrieve data and users
|
||||
$k = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue