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

This reverts commit 432abb1d33.

refs #9967
This commit is contained in:
Eric Lippmann 2015-09-07 13:20:04 +02:00
parent 0abd2afb0e
commit f12c740046
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->getUrl()->getParams();
$params = $request->getUrlParams();
$this->applyFilter(Filter::fromQuerystring((string) $params));
return $this;
}