fix: [users:edit] DatabaseException in group-admin for condition with empty list of values
parent
1c93a71f80
commit
ad3a8ee7c5
|
@ -336,7 +336,7 @@ class UsersController extends AppController
|
||||||
$org_conditions = [];
|
$org_conditions = [];
|
||||||
if (empty($currentUser['role']['perm_community_admin'])) {
|
if (empty($currentUser['role']['perm_community_admin'])) {
|
||||||
$org_conditions = ['id' => $currentUser['organisation_id']];
|
$org_conditions = ['id' => $currentUser['organisation_id']];
|
||||||
if (!empty($currentUser['role']['perm_group_admin'])) {
|
if (!empty($currentUser['role']['perm_group_admin']) && !empty($validOrgIds)) {
|
||||||
$org_conditions = ['id IN' => $validOrgIds];
|
$org_conditions = ['id IN' => $validOrgIds];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue