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
path: root/core
diff options
context:
space:
mode:
authorZoltan Flamis <zoltan@innocraft.com>2021-06-09 09:15:56 +0300
committerGitHub <noreply@github.com>2021-06-09 09:15:56 +0300
commit63190d13da715767c845e5b3ab01d108956c6977 (patch)
tree4cfe1f14827c5efb8b486a6ae96fd1c9614184eb /core
parent36e83dc533562fca2128ce2460e4c51d96b46a70 (diff)
fix regression (#17656)
* fix regression * add test Co-authored-by: diosmosis <diosmosis@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r--core/DataTable.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/DataTable.php b/core/DataTable.php
index 26d85a49e5..06352d98ee 100644
--- a/core/DataTable.php
+++ b/core/DataTable.php
@@ -432,6 +432,11 @@ class DataTable implements DataTableInterface, \IteratorAggregate, \ArrayAccess
return $this->totalsRow;
}
+ public function getSummaryRow()
+ {
+ return $this->summaryRow;
+ }
+
/**
* Returns the name of the column this table was sorted by (if any).
*