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-06-16 08:17:18 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-16 12:11:04 +0400
commitc1576a5e6cf303f8136e690e063c5974a526b1e0 (patch)
treef01ec05bc608a76a39ede442c6717af7102fe751 /plugins/VisitTime
parent3fb1fbd55432081b562eb55a86d59f559d059b55 (diff)
Moving Log Aggregation logic to new LogAggregator object
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitTime/Archiver.php b/plugins/VisitTime/Archiver.php
index 2f11c61d2a..b695ba4558 100644
--- a/plugins/VisitTime/Archiver.php
+++ b/plugins/VisitTime/Archiver.php
@@ -23,7 +23,7 @@ class Piwik_VisitTime_Archiver extends Piwik_PluginsArchiver
protected function aggregateByServerTime()
{
$array = $this->getProcessor()->getMetricsForDimension( array("label" => "HOUR(log_visit.visit_last_action_time)" )) ;
- $query = $this->getProcessor()->queryConversionsByDimension( array("label" => "HOUR(log_conversion.server_time)") );
+ $query = $this->getLogAggregator()->queryConversionsByDimension( array("label" => "HOUR(log_conversion.server_time)") );
if ($query === false) {
return;
}