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-04-04 05:30:20 +0400
committermattab <matthieu.aubry@gmail.com>2013-04-04 05:30:20 +0400
commitf61c0196e33d8ecc5c4e967ce1a8199a11477de2 (patch)
treebbac322b7b0ddfe3c9c4e0f10bd215c8fd3edced /core/DataTable.php
parent19e298faca651eae656ea7ba26b1a0ff25241f97 (diff)
Very nice commit!
Refs #1700 * Refactoring + adding missing parameters to other sumRow() calls * Fixing tests on PHP 5.4 / 5.5
Diffstat (limited to 'core/DataTable.php')
-rw-r--r--core/DataTable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DataTable.php b/core/DataTable.php
index b39d7644dc..656ff1c480 100644
--- a/core/DataTable.php
+++ b/core/DataTable.php
@@ -582,7 +582,7 @@ class Piwik_DataTable
)));
$this->summaryRow->setColumn('label', self::LABEL_SUMMARY_ROW);
} else {
- $this->summaryRow->sumRow($row, $enableCopyMetadata = false);
+ $this->summaryRow->sumRow($row, $enableCopyMetadata = false, $this->columnAggregationOperations);
}
return $this->summaryRow;
}