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/VisitTime/Controller.php')
-rw-r--r--plugins/VisitTime/Controller.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/VisitTime/Controller.php b/plugins/VisitTime/Controller.php
index b16a6b6e5f..e43ce2d4c7 100644
--- a/plugins/VisitTime/Controller.php
+++ b/plugins/VisitTime/Controller.php
@@ -24,21 +24,21 @@ class Controller extends \Piwik\Plugin\Controller
$view = new View('@VisitTime/index');
$view->dataTableVisitInformationPerLocalTime = $this->getVisitInformationPerLocalTime(true);
$view->dataTableVisitInformationPerServerTime = $this->getVisitInformationPerServerTime(true);
- echo $view->render();
+ return $view->render();
}
- public function getVisitInformationPerServerTime($fetch = false)
+ public function getVisitInformationPerServerTime()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getVisitInformationPerLocalTime($fetch = false)
+ public function getVisitInformationPerLocalTime()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getByDayOfWeek($fetch = false)
+ public function getByDayOfWeek()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
}