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
No related branches found
No related tags found
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.
Finish editing this message first!
Please register or to comment