The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 6a965057 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed unused variable.

parent 1d60b911
No related merge requests found
...@@ -104,8 +104,8 @@ class Results extends \VuFind\Search\Base\Results ...@@ -104,8 +104,8 @@ class Results extends \VuFind\Search\Base\Results
if (!empty($dateFacets)) { if (!empty($dateFacets)) {
foreach ($dateFacets as $dateFacet) { foreach ($dateFacets as $dateFacet) {
$this->responseFacets[] = array( $this->responseFacets[] = array(
'fieldName' => 'PublicationDate', 'fieldName' => $dateFacet,
'displayName' => 'PublicationDate', 'displayName' => $dateFacet,
'counts' => array() 'counts' => array()
); );
} }
......
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