Skip to content

Commit

Permalink
Fix parameters to ignore when setting a filter for the ServiceList
Browse files Browse the repository at this point in the history
refs #7876
  • Loading branch information
Johannes Meyer committed Apr 20, 2015
1 parent 5196f16 commit 8b18c5a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ public function init()
{
$serviceList = new ServiceList($this->backend);
$serviceList->setFilter(Filter::fromQueryString(
(string) $this->params->without('service_problem', 'service_handled', 'view')
(string) $this->params->without(array('service_problem', 'service_handled', 'view'))
));
$this->serviceList = $serviceList;
}
Expand Down

0 comments on commit 8b18c5a

Please sign in to comment.