Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #22 from Ioannis/Fix_error_in_serialize
Return a non-associative array
aaschenbrener committed Apr 9, 2024
2 parents 460b331 + ec77b6c commit c80d2c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/GrouperGroup.php
@@ -913,6 +913,6 @@ public function removeDuplicates(array $arrOne, array $arrTwo)
}
}

return $uniqueArr;
return array_values($uniqueArr);
}
}

0 comments on commit c80d2c5

Please sign in to comment.