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-12 08:23:51 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-16 12:11:03 +0400
commitd8f110aca03ff8c73811a141631f12a7a1ddc16f (patch)
tree58ca855357d521bae098e882970a14c83874b742 /plugins/DevicesDetection/Archiver.php
parentc17139710a43b55b5f48377e6281db6ae602957c (diff)
More refactoring, moving SQL to classes and cleaning up logic so I can understand it (nearly there)
Diffstat (limited to 'plugins/DevicesDetection/Archiver.php')
-rw-r--r--plugins/DevicesDetection/Archiver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DevicesDetection/Archiver.php b/plugins/DevicesDetection/Archiver.php
index 8bedcc9d39..4d74e28ca2 100644
--- a/plugins/DevicesDetection/Archiver.php
+++ b/plugins/DevicesDetection/Archiver.php
@@ -57,8 +57,8 @@ class Piwik_DevicesDetection_Archiver extends Piwik_PluginsArchiver
self::BROWSER_VERSION_RECORD_NAME
);
foreach ($dataTablesToSum as $dt) {
- $this->getProcessor()->archiveDataTable(
- $dt, null, $this->maximumRows, $this->maximumRows, $columnToSort = "nb_visits");
+ $this->getProcessor()->aggregateDataTableReports(
+ $dt, $this->maximumRows, $this->maximumRows, $columnToSort = "nb_visits");
}
}
} \ No newline at end of file