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

Eliminated unused variable.

parent c2c33eec
Branches
Tags
No related merge requests found
...@@ -380,7 +380,7 @@ class BrowseController extends AbstractBase ...@@ -380,7 +380,7 @@ class BrowseController extends AbstractBase
$this->params()->fromQuery('findby') $this->params()->fromQuery('findby')
) )
); );
foreach ($secondaryList as $index=>$item) { foreach (array_keys($secondaryList) as $index) {
$secondaryList[$index]['value'] .= $secondaryList[$index]['value'] .=
' AND dewey-hundreds:' ' AND dewey-hundreds:'
. $this->params()->fromQuery('findby'); . $this->params()->fromQuery('findby');
......
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