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>2014-01-21 06:48:37 +0400
committermattab <matthieu.aubry@gmail.com>2014-01-21 06:48:37 +0400
commit9297b1674d692b7092bd9d26c7b1e26aa85e75d0 (patch)
tree3f7a20d352b6ca91e1da9e1fd169579f33569de3 /plugins/ExampleUI
parent4eb2fe0e46d33a5e56ab794036617b3bcd8b16a6 (diff)
Removing unused parameter to getEvolutionGraph
Diffstat (limited to 'plugins/ExampleUI')
-rw-r--r--plugins/ExampleUI/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExampleUI/Controller.php b/plugins/ExampleUI/Controller.php
index bbe6e23b12..555f2f2a88 100644
--- a/plugins/ExampleUI/Controller.php
+++ b/plugins/ExampleUI/Controller.php
@@ -49,7 +49,7 @@ class Controller extends \Piwik\Plugin\Controller
$view = new View('@ExampleUI/evolutiongraph');
$this->setPeriodVariablesView($view);
- $view->evolutionGraph = $this->getEvolutionGraph(true, array('server1', 'server2'));
+ $view->evolutionGraph = $this->getEvolutionGraph(array('server1', 'server2'));
return $view->render();
}
@@ -81,7 +81,7 @@ class Controller extends \Piwik\Plugin\Controller
return $view->render();
}
- public function getEvolutionGraph($fetch = false, array $columns = array())
+ public function getEvolutionGraph(array $columns = array())
{
if (empty($columns)) {
$columns = Common::getRequestVar('columns');