Fixed in the function 'agents_get_group_agents' get agents with noACL flag is setted. TICKET: #3166
This commit is contained in:
parent
60698183e8
commit
42875d7e96
|
@ -770,13 +770,18 @@ function agents_get_group_agents ($id_group = 0, $search = false, $case = "lower
|
||||||
if ($childGroups) {
|
if ($childGroups) {
|
||||||
if (is_array($id_group)) {
|
if (is_array($id_group)) {
|
||||||
foreach ($id_group as $parent) {
|
foreach ($id_group as $parent) {
|
||||||
$id_group = array_merge($id_group, groups_get_id_recursive($parent, true));
|
$id_group = array_merge($id_group,
|
||||||
|
groups_get_id_recursive($parent, true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$id_group = groups_get_id_recursive($id_group, true);
|
$id_group = groups_get_id_recursive($id_group, true);
|
||||||
}
|
}
|
||||||
$id_group = array_keys(users_get_groups(false, "AR", true, false, (array)$id_group));
|
|
||||||
|
if (!$noACL) {
|
||||||
|
$id_group = array_keys(
|
||||||
|
users_get_groups(false, "AR", true, false, (array)$id_group));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_array($id_group)) {
|
if (is_array($id_group)) {
|
||||||
|
|
Loading…
Reference in New Issue