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:
authormattpiwik <matthieu.aubry@gmail.com>2011-03-23 04:59:57 +0300
committermattpiwik <matthieu.aubry@gmail.com>2011-03-23 04:59:57 +0300
commit66164854e74551aadc222c423f2edc88593b81b8 (patch)
tree3903f86d8ec94b207a1b60ef5113a7fd85df15dc /plugins/CustomVariables/API.php
parentea66910a54d1c9933cb3b96f0bcfcfdf8a69ec55 (diff)
Refs #2218 Thanks for the tip Anthon, it helped me see the light...
Now the filter object itself will take care of applying recursively when the table was recursively loaded indeed. Leaving open until I can check that all occurences on demo are fixed git-svn-id: http://dev.piwik.org/svn/trunk@4169 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/CustomVariables/API.php')
-rw-r--r--plugins/CustomVariables/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CustomVariables/API.php b/plugins/CustomVariables/API.php
index 5fb3debcf9..5bb639eae7 100644
--- a/plugins/CustomVariables/API.php
+++ b/plugins/CustomVariables/API.php
@@ -31,7 +31,7 @@ class Piwik_CustomVariables_API
{
$dataTable = Piwik_Archive::getDataTableFromArchive('CustomVariables_valueByName', $idSite, $period, $date, $segment, $expanded, $idSubtable);
$dataTable->filter('Sort', array(Piwik_Archive::INDEX_NB_VISITS, 'desc', $naturalSort = false, $expanded));
- $dataTable->queueFilter('ReplaceColumnNames', array($expanded));
+ $dataTable->queueFilter('ReplaceColumnNames');
return $dataTable;
}