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/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()