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:
authorThomas Steur <thomas.steur@gmail.com>2015-03-18 07:20:08 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-03-18 07:20:08 +0300
commitd532912e01eca79fa94df09578e59a94fb7c6511 (patch)
tree03662b9e901eeaa9c576af67dcf30395b5034c43 /plugins/Contents/Archiver.php
parent892eef9497a38e960a3a258bd23562f521b00115 (diff)
fix a couple of bugs and actually only count the recursive rows count if needed
Diffstat (limited to 'plugins/Contents/Archiver.php')
-rw-r--r--plugins/Contents/Archiver.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Contents/Archiver.php b/plugins/Contents/Archiver.php
index 9cd6fbfc49..ba8df12d79 100644
--- a/plugins/Contents/Archiver.php
+++ b/plugins/Contents/Archiver.php
@@ -48,14 +48,15 @@ class Archiver extends \Piwik\Plugin\Archiver
public function aggregateMultipleReports()
{
$dataTableToSum = $this->getRecordNames();
+ $columnsAggregationOperation = null;
$this->getProcessor()->aggregateDataTableRecords(
$dataTableToSum,
$this->maximumRowsInDataTable,
$this->maximumRowsInSubDataTable,
$this->columnToSortByBeforeTruncation,
- $columnsAggregationOperation = null,
+ $columnsAggregationOperation,
$columnsToRenameAfterAggregation = null,
- $countRowsRecursive = false);
+ $countRowsRecursive = array());
}
private function getRecordNames()