Skip to content

Commit

Permalink
isilquerystring without fixed boost
Browse files Browse the repository at this point in the history
  • Loading branch information
chrode committed May 22, 2023
1 parent 3f53420 commit 36f2968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Slots/AdvancedQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function handleIsilMatch($originalQuerystring, $searchHandler, $settings)
$originalQuerystring = trim($originalQuerystring, $settings['queryModifier']['isilQueryTrim']);
$originalQuerystring = str_replace([' ', ')', '('], ['\\\ ', '\\\)', '\\\('], $originalQuerystring);

$return = ' OR ' . sprintf($this->settings['queryModifier']['isilQueryString'], $originalQuerystring).'^500000';
$return = ' OR ' . sprintf($this->settings['queryModifier']['isilQueryString'], $originalQuerystring);

return $return;
}
Expand Down

0 comments on commit 36f2968

Please sign in to comment.