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/ExamplePlugin/Controller.php')
-rw-r--r--plugins/ExamplePlugin/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExamplePlugin/Controller.php b/plugins/ExamplePlugin/Controller.php
index ed927a0638..460bcd9c0b 100644
--- a/plugins/ExamplePlugin/Controller.php
+++ b/plugins/ExamplePlugin/Controller.php
@@ -25,6 +25,6 @@ class Controller extends \Piwik\Plugin\Controller
$this->setBasicVariablesView($view);
$view->answerToLife = '42';
- echo $view->render();
+ return $view->render();
}
}