Fixes the list of users.
This commit is contained in:
parent
f33eb93248
commit
ace615aa97
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ class UserController extends ASCIMUser {
|
||||||
$SCIMUser = $this->getSCIMUser($userId);
|
$SCIMUser = $this->getSCIMUser($userId);
|
||||||
// Do not insert empty entry
|
// Do not insert empty entry
|
||||||
if (!empty($SCIMUser)) {
|
if (!empty($SCIMUser)) {
|
||||||
$SCIMUsers[$userId] = $SCIMUser;
|
$SCIMUsers[] = $SCIMUser;
|
||||||
} else {
|
} else {
|
||||||
// Logged user does not have permissions to see this user
|
// Logged user does not have permissions to see this user
|
||||||
// only showing its id
|
// only showing its id
|
||||||
|
|
Loading…
Reference in a new issue