Merge branch '4.10' into 4

This commit is contained in:
Steve Boyd 2022-04-06 10:33:36 +12:00
commit cc43326de6
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class SearchForm extends Form
$keywords = $this->addStarsToKeywords($keywords);
$pageLength = $this->getPageLength();
$start = $request->requestVar('start') ?: 0;
$start = max(0, (int)$request->requestVar('start'));
$booleanSearch =
strpos($keywords, '"') !== false ||