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 08:00:16 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-05 08:00:16 +0400
commit5d968dcc49d6b95284566abd1157b47b5a54268f (patch)
tree63ce1d747684754d3633d9c2174dccbac6e935eb /plugins/Actions/API.php
parent624efca3e96853f7ff40d5b323f26688a951b5f4 (diff)
Renaming DataTable\Array to DataTable\Map in comments and tests
Diffstat (limited to 'plugins/Actions/API.php')
-rw-r--r--plugins/Actions/API.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Actions/API.php b/plugins/Actions/API.php
index 534ed6a46d..b01c98f87b 100644
--- a/plugins/Actions/API.php
+++ b/plugins/Actions/API.php
@@ -410,15 +410,15 @@ class API
// search an array of tables, e.g. when using date=last30
// note that if the root is an array, we filter all children
// if an array occurs inside the nested table, we only look for the first match (see below)
- $newTableArray = $table->getEmptyClone();
+ $dataTableMap = $table->getEmptyClone();
foreach ($table->getDataTables() as $label => $subTable) {
$newSubTable = $this->doFilterPageDatatableSearch($callBackParameters, $subTable, $searchTree);
- $newTableArray->addTable($newSubTable, $label);
+ $dataTableMap->addTable($newSubTable, $label);
}
- return $newTableArray;
+ return $dataTableMap;
}
}