Skip to content
Snippets Groups Projects
Commit a1fc5748 authored by Prasad's avatar Prasad
Browse files

Fixes #1891: Reverted array union instead of array_merge to retain keys

parent c89e504c
No related branches found
No related tags found
No related merge requests found
......@@ -396,7 +396,7 @@ class VtigerCRMObjectMeta extends EntityMeta {
$heirarchyUsers = get_user_array(false,"ACTIVE",$this->user->id);
$groupUsers = vtws_getUsersInTheSameGroup($this->user->id);
$this->assignUsers = array_merge($heirarchyUsers, $groupUsers);
$this->assignUsers = $heirarchyUsers + $groupUsers;
$this->assign = true;
}
......
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