Skip to content
This repository was archived by the owner on Nov 15, 2021. It is now read-only.

Commit eb95198

Browse files
authored
Merge pull request #12 from timohund/task/master/make-compatible-with-solr-9
[TASK] Make compatible with EXT:solr 9
2 parents 0808dc6 + e9013f6 commit eb95198

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Resources/Private/Templates/Search/Results.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<div class="tx-solr-search-form col-lg-2 hidden-xs">&nbsp;</div>
2323
<div class="col-lg-2 hidden-xs">
24-
<f:if condition="{hasSearched}">
24+
<f:if condition="{resultSet.hasSearched}">
2525
<f:if condition="{resultSet.usedSearchRequest.contextTypoScriptConfiguration.searchSorting}">
2626
<f:render partial="Result/Sorting" section="Sorting" arguments="{resultSet:resultSet}" />
2727
</f:if>
@@ -94,7 +94,7 @@
9494

9595
<div class="row">
9696
<div class="col-md-12">
97-
<f:if condition="{hasSearched}">
97+
<f:if condition="{resultSet.hasSearched}">
9898
<f:if condition="{resultSet.searchresults.hasGroups}">
9999
<f:then>
100100
<f:for each="{resultSet.searchresults.groups}" as="group">
@@ -130,7 +130,7 @@ <h2>{group.groupname}</h2>
130130

131131
<f:section name="extra">
132132
<div id="tx-solr-search-functions">
133-
<f:if condition="{hasSearched}">
133+
<f:if condition="{resultSet.hasSearched}">
134134
<f:if condition="{resultSet.usedSearchRequest.contextTypoScriptConfiguration.searchFaceting}">
135135
<f:render partial="Result/Facets" section="Facets" arguments="{resultSet:resultSet}" />
136136
</f:if>

ext_emconf.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$EM_CONF[$_EXTKEY] = array(
33
'title' => 'Apache Solr for TYPO3 - Fluid Frontend Customizing',
44
'description' => 'This extension shows, how to customize solrfluid with custom templates',
5-
'version' => '3.3.0',
5+
'version' => '4.0.0',
66
'state' => 'stable',
77
'category' => 'plugin',
88
'author' => 'Timo Hund, Markus Friedrich',
@@ -16,10 +16,10 @@
1616
'constraints' => array(
1717
'depends' => array(
1818
'scheduler' => '',
19-
'solr' => '8.0.0-',
20-
'extbase' => '8.7.0-9.3.99',
21-
'fluid' => '8.7.0-9.3.99',
22-
'typo3' => '8.7.0-9.3.99'
19+
'solr' => '9.0.0-',
20+
'extbase' => '8.7.0-9.5.99',
21+
'fluid' => '8.7.0-9.5.99',
22+
'typo3' => '8.7.0-9.5.99'
2323
),
2424
'conflicts' => array(),
2525
'suggests' => array(

0 commit comments

Comments
 (0)