Skip to content

Commit

Permalink
SearchService.search api signature changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ern committed Jun 8, 2023
1 parent 67637c8 commit e0394c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ public List<SearchResult> searchInCurrentSite(String searchTerms) throws Invalid
contexts.add(getCurrentSiteId());

try {
SearchList sl = searchService.search(searchTerms, contexts, 0, 50, "normal", "normal");
SearchList sl = searchService.search(searchTerms, contexts, null, 0, 50, "normal", "normal");
for (Iterator i = sl.iterator(0); i.hasNext();) {
SearchResult sr = (SearchResult) i.next();

Expand Down

1 comment on commit e0394c4

@austin48
Copy link
Contributor

@austin48 austin48 commented on e0394c4 Jan 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs backporting to clog 22.x to be compatible with Sakai 22.4

Please sign in to comment.