We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e735e92 commit 3119cadCopy full SHA for 3119cad
Classes/Service/SolrServiceProvider.php
@@ -289,7 +289,7 @@ protected function addFacetFilters(array $arguments): array
289
// Do not add it otherwise as the additional {!tag …} prepended to the Solr query
290
// will break usage of {!join …} in the query.
291
$queryInfo = ['key' => 'facet-'.$facetID.'-'.$facetTerm];
292
- if ($facetInfo['config']['excludeOwnFilter'] && $facetQuery) {
+ if (array_key_exists('excludeOwnFilter', $facetInfo['config']) && $facetInfo['config']['excludeOwnFilter'] && $facetQuery) {
293
$queryInfo['tag'] = $this->tagForFacet($facetID);
294
}
295
0 commit comments