Verified Commit 5be91082 authored by dockx thibault's avatar dockx thibault
Browse files

:ambulance: Fix(Tasks) - not taking sole users

Not taking users selection, only groups - fixed
Showing with 4 additions and 4 deletions
+4 -4
......@@ -257,12 +257,12 @@ class tasks extends simplePlugin
$listMemberDN[] = $memberDN;
}
// case of member not within a group or dyngroup
} else {
$listMemberDN[] = $group; //Here group is indeed a sole user
}
// Make sure no duplicate can happens, case of same member in an existing group.
$listMemberDN = array_unique($listMemberDN);
} else {
$listMemberDN[] = $group; //Here group is indeed a sole user
}
// Make sure no duplicate can happens, case of same member in an existing group.
$listMemberDN = array_unique($listMemberDN);
}
// Iterate on the DN list to remove any members representing a group (members of that potential groups were extracted).
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment