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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-30 23:15:09 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-30 23:15:09 +0400
commitedf2c04f41445fb6f3f5658e887b53a8a49b4e13 (patch)
treefdb13ce6e0baea2e7badd7a3a6dca5ac19699368 /plugins/CustomVariables
parent12c74e64281ddab9303eb389fcb76f0518651a55 (diff)
Refs #4040, #4041, added ability to access view properties directly, started documenting view properties and modified ExampleUI plugin to set view properties directly.
Diffstat (limited to 'plugins/CustomVariables')
-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 83b83fb779..ae7fcaad8c 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -23,12 +23,12 @@ class Piwik_CustomVariables_Controller extends Piwik_Controller
public function getCustomVariables($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getCustomVariablesValuesFromNameId($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
}