Skip to content

Commit

Permalink
chore: resolve merge conflict with master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nJim committed Sep 13, 2023
2 parents 86c8bd3 + 7c20b32 commit d03fe3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/profiles/custom/yalesites_profile/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"drupal/webform": "^6.2@beta",
"drupal/wingsuit_companion": "^2.0@RC",
"jjj/chosen": "^2.2",
"yalesites-org/atomic": "1.18.0",
"yalesites-org/atomic": "1.20.0",
"yalesites-org/yale_cas": "^1.0"
},
"minimum-stability": "dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ public function getView($type, $params) {
// Get terms to include.
if (isset($paramsDecoded['filters']['terms_include'])) {
foreach ($paramsDecoded['filters']['terms_include'] as $term) {
$termsIncludeArray[] = $this->getTermId($term);
$termsIncludeArray[] = (int) is_object($term) ? $term['target_id'] : $term;
}
}

// Get terms to exclude.
if (isset($paramsDecoded['filters']['terms_exclude'])) {
foreach ($paramsDecoded['filters']['terms_exclude'] as $term) {
$termsExcludeArray[] = $this->getTermId($term);
$termsExcludeArray[] = (int) is_object($term) ? $term['target_id'] : $term;
}
}

Expand Down

0 comments on commit d03fe3a

Please sign in to comment.