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:
authormattab <matthieu.aubry@gmail.com>2013-07-31 01:36:36 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-31 01:36:36 +0400
commitae66dd9ddade00aba21839c07d6d167c2fd85be6 (patch)
tree6ebb3e10cb153809c0bee337088d962da9561606 /plugins/CustomVariables/Controller.php
parentc35e613b7ff66c6c86a712f0fd3250692ed9d8a9 (diff)
Merged master into namespace branch
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 9734c0883b..5607e2c630 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -26,12 +26,12 @@ class Piwik_CustomVariables_Controller extends Controller
public function getCustomVariables($fetch = false)
{
- return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getCustomVariablesValuesFromNameId($fetch = false)
{
- return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
+ return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
}