From 52e9403a82235203c5ee2a49c93d23f99ef46254 Mon Sep 17 00:00:00 2001 From: Matthieu Aubry <mattab@users.noreply.github.com> Date: Thu, 28 Sep 2017 08:23:16 +1300 Subject: [PATCH] Glossary: make sure to return all metrics and reports (#12110) Add filter_limit=-1 to Request::processRequest calls --- plugins/API/Controller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/API/Controller.php b/plugins/API/Controller.php index 416cc728de..9801005795 100644 --- a/plugins/API/Controller.php +++ b/plugins/API/Controller.php @@ -153,8 +153,8 @@ class Controller extends \Piwik\Plugin\Controller Piwik::checkUserHasSomeViewAccess(); return $this->renderTemplate('glossary', array( - 'reports' => Request::processRequest('API', array('method' => 'API.getGlossaryReports')), - 'metrics' => Request::processRequest('API', array('method' => 'API.getGlossaryMetrics')), + 'reports' => Request::processRequest('API', array('method' => 'API.getGlossaryReports', 'filter_limit' => -1)), + 'metrics' => Request::processRequest('API', array('method' => 'API.getGlossaryMetrics', 'filter_limit' => -1)), )); } } -- GitLab