Skip to content

Commit

Permalink
Merge pull request #103 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 4.0.1
  • Loading branch information
briskt authored May 19, 2020
2 parents 76a0e07 + 35dc962 commit 920535d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [4.0.1] - 2020-05-19
### Fixed
- Fixed null check on groupsField in Workday user array

## [4.0.0] - 2020-05-18
### Removed
- Remove Insite ID Store adapter
Expand Down
2 changes: 1 addition & 1 deletion application/common/components/adapters/WorkdayIdStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function generateGroupsLists(array &$users)
$groups = [];
foreach ($groupsFields as $groupsField) {
if (strlen($user[$groupsField]) > 0) {
$groupsSubList = explode(' ', $user[$groupsField ?? '']);
$groupsSubList = explode(' ', $user[$groupsField] ?? '');
$groups = array_merge($groups, $groupsSubList);
}
}
Expand Down

0 comments on commit 920535d

Please sign in to comment.