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-10-05 06:31:51 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-05 06:31:51 +0400
commit624efca3e96853f7ff40d5b323f26688a951b5f4 (patch)
tree4c3d996e5b86cb7d428b2afb454b4c8b2adc8395 /plugins/VisitorInterest/API.php
parent99940a44a19e5ef4d24b83b61ce2130f96530df6 (diff)
Renaming DataTable\Array to DataTable\Map in comments and tests
Diffstat (limited to 'plugins/VisitorInterest/API.php')
-rw-r--r--plugins/VisitorInterest/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitorInterest/API.php b/plugins/VisitorInterest/API.php
index 7a6f925254..d1cf937d0f 100644
--- a/plugins/VisitorInterest/API.php
+++ b/plugins/VisitorInterest/API.php
@@ -116,7 +116,7 @@ class API
private static function addVisitsPercentColumn($dataTable)
{
if ($dataTable instanceof DataTable\Map) {
- foreach ($dataTable->getArray() as $table) {
+ foreach ($dataTable->getDataTables() as $table) {
self::addVisitsPercentColumn($table);
}
} else {