Skip to content
Snippets Groups Projects
Commit 6af5f2d8 authored by Mario Trojan's avatar Mario Trojan Committed by Robert Lange
Browse files

Refer to $checkboxFilters and $filterList via $this (#1818)

parent c8c58ab6
Branches
Tags
No related merge requests found
......@@ -10,7 +10,7 @@
$lastSort = $this->searchMemory()->getLastSort($this->searchClassId);
$options = $this->searchOptions($this->searchClassId);
$hasDefaultsApplied = $params->hasDefaultsApplied();
$filterCount = $this->searchbox()->getFilterCount($checkboxFilters, $filterList);
$filterCount = $this->searchbox()->getFilterCount($this->checkboxFilters, $this->filterList);
// Determine whether the only filters applied are the default ones; this controls
// when we display or hide the reset button:
......@@ -26,7 +26,7 @@
$advancedSearch = $this->searchType === 'advanced';
?>
<?php ob_start(); ?>
<?php foreach ($checkboxFilters as $filter): ?>
<?php foreach ($this->checkboxFilters as $filter): ?>
<?php if ($filter['selected']): ?>
<span class="filter-value">
<?php
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment