diff --git a/Classes/Common/Solr/SolrSearch.php b/Classes/Common/Solr/SolrSearch.php index ee33c5367..06ff7b429 100644 --- a/Classes/Common/Solr/SolrSearch.php +++ b/Classes/Common/Solr/SolrSearch.php @@ -543,7 +543,7 @@ public function submit($start, $rows, $processResults = true) $documents[$doc['uid']]['metadata'][$indexName] = $doc['metadata'][$indexName]; } } - if ($this->searchParams['fulltext'] != '1') { + if (!array_key_exists('fulltext', $this->searchParams) || $this->searchParams['fulltext'] != '1') { $documents[$doc['uid']]['page'] = 1; $children = $childrenOf[$doc['uid']] ?? [];