subugoe / typo3-find

TYPO3 extension providing a frontend for Solr indexes.
GNU General Public License v2.0
16 stars 20 forks source link

Wrong resultCount if count less "page size" #146

Closed AppWerft closed 5 years ago

AppWerft commented 5 years ago

In file find/Resources/Private/Partials/ResultCount.html in line 25:

wrong (now):

 <f:if condition="{results.numfound}<{settings.count}">

right:

<f:if condition="{results.numfound}<{config.count}">

settings is wrong namespace, right is config. settings.count is always null and the condition cannot work.