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:
authorThomas Steur <thomas.steur@gmail.com>2013-11-18 06:27:50 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-11-18 06:27:50 +0400
commit04b12f0a512e064393056743dbabbac789e5e485 (patch)
tree5239fe0ba9dc4df6a7cd97f75b4af92a2bb60268 /plugins/CustomVariables/Controller.php
parent8972c29ededa241e58604267b41a4b830456a148 (diff)
moved renderReport method to pluginController which is a much better place
Diffstat (limited to 'plugins/CustomVariables/Controller.php')
-rw-r--r--plugins/CustomVariables/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CustomVariables/Controller.php b/plugins/CustomVariables/Controller.php
index 3ad08c6847..c7f55de4fa 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -28,12 +28,12 @@ class Controller extends \Piwik\Plugin\Controller
public function getCustomVariables($fetch = false)
{
- return Factory::renderReport($this->pluginName, __FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__, $fetch);
}
public function getCustomVariablesValuesFromNameId($fetch = false)
{
- return Factory::renderReport($this->pluginName, __FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__, $fetch);
}
}