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@googlemail.com>2014-06-19 07:10:29 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-19 07:10:29 +0400
commite9aae52fb3bc392663ee19aa2a5f702a3ed71fbf (patch)
tree0259bfcda90bf8cafd5e95383fff4111cf70ca96 /plugins/CustomVariables/Controller.php
parent253b165e621953efcb692f985036e217920ba696 (diff)
make sure the ordering of reports is correct, pass an instance of a report to RenderReport
Diffstat (limited to 'plugins/CustomVariables/Controller.php')
-rw-r--r--plugins/CustomVariables/Controller.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/CustomVariables/Controller.php b/plugins/CustomVariables/Controller.php
index 47ed06eee6..59a4a949de 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -8,16 +8,7 @@
*/
namespace Piwik\Plugins\CustomVariables;
-use Piwik\Piwik;
-use Piwik\View;
-
class Controller extends \Piwik\Plugin\Controller
{
- public function index()
- {
- return View::singleReport(
- Piwik::translate('CustomVariables_CustomVariables'),
- $this->renderReport('getCustomVariables'));
- }
}