monitoring: Fix call for getting the URL parameters in DataView::handleRequest()

refs #9967
This commit is contained in:
Eric Lippmann 2015-08-20 14:23:03 +02:00
parent 71ff4512c3
commit 432abb1d33
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ abstract class DataView implements QueryInterface, SortRules, FilterColumns, Ite
*/
public function handleRequest(Request $request)
{
$params = $request->getUrlParams();
$params = $request->getUrl()->getParams();
$this->applyFilter(Filter::fromQuerystring((string) $params));
return $this;
}