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

Fixed formatting of hidden filters.

- This was likely broken by formatting logic introduced by hidden filter persistence logic.
parent 26093a4f
No related merge requests found
...@@ -117,7 +117,7 @@ class AuthorityRecommend implements RecommendInterface ...@@ -117,7 +117,7 @@ class AuthorityRecommend implements RecommendInterface
if ($params[$i] == '__resultlimit__') { if ($params[$i] == '__resultlimit__') {
$this->resultLimit = intval($params[$i + 1]); $this->resultLimit = intval($params[$i + 1]);
} else { } else {
$this->filters[] = $params[$i] . ':(' . $params[$i + 1] . ')'; $this->filters[] = $params[$i] . ':' . $params[$i + 1];
} }
} }
} }
......
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