Skip to content
Snippets Groups Projects
Unverified Commit 06375d51 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix illegal concatenation

parent 0eedf304
Branches
Tags
No related merge requests found
......@@ -171,7 +171,7 @@ class AttributeAddUsersGroups extends BaseFilter
// run through all groups and add each to our groups array
foreach ($all_groups as $group_entry) {
$groups[] .= $group_entry[$map['member']][0];
$groups[] = $group_entry[$map['member']][0];
}
return $groups;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment