Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CustomVariables/Controller.php')
-rw-r--r--plugins/CustomVariables/Controller.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/CustomVariables/Controller.php b/plugins/CustomVariables/Controller.php
index c7f55de4fa..35d1525cf9 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -19,21 +19,21 @@ use Piwik\ViewDataTable\Factory;
*/
class Controller extends \Piwik\Plugin\Controller
{
- public function index($fetch = false)
+ public function index()
{
return View::singleReport(
Piwik::translate('CustomVariables_CustomVariables'),
- $this->getCustomVariables(true), $fetch);
+ $this->getCustomVariables(true));
}
- public function getCustomVariables($fetch = false)
+ public function getCustomVariables()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getCustomVariablesValuesFromNameId($fetch = false)
+ public function getCustomVariablesValuesFromNameId()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
}