Use $result->getNumFound() for $solr->numberOfHits

This commit is contained in:
Frank Ulrich Weber 2018-11-05 15:46:05 +01:00
parent e18080ec76
commit ae35ef4b2b
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ class tx_dlf_solr {
$selectQuery = $this->service->createSelect($this->params);
$results = $this->service->select($selectQuery);
$this->numberOfHits = min($results->getNumFound(), $this->limit);
$this->numberOfHits = $results->getNumFound();
// Keep track of relevance.
$i = 0;