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

Commit

Permalink
Merge pull request #12 from timohund/task/master/make-compatible-with…
Browse files Browse the repository at this point in the history
…-solr-9

[TASK] Make compatible with EXT:solr 9
  • Loading branch information
timohund authored Feb 27, 2019
2 parents 0808dc6 + e9013f6 commit eb95198
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Resources/Private/Templates/Search/Results.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

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

<div class="row">
<div class="col-md-12">
<f:if condition="{hasSearched}">
<f:if condition="{resultSet.hasSearched}">
<f:if condition="{resultSet.searchresults.hasGroups}">
<f:then>
<f:for each="{resultSet.searchresults.groups}" as="group">
Expand Down Expand Up @@ -130,7 +130,7 @@ <h2>{group.groupname}</h2>

<f:section name="extra">
<div id="tx-solr-search-functions">
<f:if condition="{hasSearched}">
<f:if condition="{resultSet.hasSearched}">
<f:if condition="{resultSet.usedSearchRequest.contextTypoScriptConfiguration.searchFaceting}">
<f:render partial="Result/Facets" section="Facets" arguments="{resultSet:resultSet}" />
</f:if>
Expand Down
10 changes: 5 additions & 5 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$EM_CONF[$_EXTKEY] = array(
'title' => 'Apache Solr for TYPO3 - Fluid Frontend Customizing',
'description' => 'This extension shows, how to customize solrfluid with custom templates',
'version' => '3.3.0',
'version' => '4.0.0',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Timo Hund, Markus Friedrich',
Expand All @@ -16,10 +16,10 @@
'constraints' => array(
'depends' => array(
'scheduler' => '',
'solr' => '8.0.0-',
'extbase' => '8.7.0-9.3.99',
'fluid' => '8.7.0-9.3.99',
'typo3' => '8.7.0-9.3.99'
'solr' => '9.0.0-',
'extbase' => '8.7.0-9.5.99',
'fluid' => '8.7.0-9.5.99',
'typo3' => '8.7.0-9.5.99'
),
'conflicts' => array(),
'suggests' => array(
Expand Down

0 comments on commit eb95198

Please sign in to comment.