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:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-06 11:11:54 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-06 11:11:54 +0400
commita5def012e4c6ea77f2a7e82d548536285d5df1d2 (patch)
tree23644a098e8b442d9a6ad81f5dab2f3c0086ea11 /core
parent0508e38d7d2247501ee2951e90e01724b79776b6 (diff)
refs #5896 fix report limit test
Diffstat (limited to 'core')
-rw-r--r--core/DataTable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DataTable.php b/core/DataTable.php
index 7bf7cceef5..d4c1976d60 100644
--- a/core/DataTable.php
+++ b/core/DataTable.php
@@ -1638,6 +1638,6 @@ class DataTable implements DataTableInterface, \IteratorAggregate
* @return \ArrayIterator|Row[]
*/
public function getIterator() {
- return new \ArrayIterator($this->rows);
+ return new \ArrayIterator($this->getRows());
}
} \ No newline at end of file