Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…iscovery into 24.08.00
  • Loading branch information
mdnoble73 committed Jul 21, 2024
2 parents c053fd1 + bdbabab commit 123ba2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions code/web/release_notes/24.08.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
- Add the ability to use alternate library cards (such as state library cards) with cloudLibrary (Ticket 69336, 133101) (*KP*)

// alexander
### Summon Updates
- Adjust code to ensure that the filter applies correctly no matter what page of results users are on when they apply it. (*AB*)

// jacob

Expand Down
2 changes: 1 addition & 1 deletion code/web/sys/SearchObject/SummonSearcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public function getFacetSet() {
if ($isApplied) {
$facetSettings['removalUrl'] = $this->renderLinkWithoutFilter($facetId . ':' . $facetValue);
} else {
$facetSettings['url'] = $this->renderSearchUrl() . '&filter[]=' . $facetId . ':' . urlencode($facetValue);
$facetSettings['url'] = $this->renderSearchUrl() . '&filter[]=' . $facetId . ':' . urlencode($facetValue) . '&page=1';
}
$list[] = $facetSettings;
}
Expand Down

0 comments on commit 123ba2f

Please sign in to comment.