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:
authorThomas Steur <thomas.steur@gmail.com>2015-02-16 02:59:51 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-02-16 02:59:51 +0300
commit22aea94fc2d0729e58daf27449534ebfcbb385a6 (patch)
tree38359c1a715b51a2d082aa8216cf1ced2659648e /plugins/Actions/API.php
parent04d330ece97d819ed7112da94554d0ad86cb53fa (diff)
refs #4633 we need to define the segmentValue before queuedFilters are run, otherwise it would not be converted
Diffstat (limited to 'plugins/Actions/API.php')
-rw-r--r--plugins/Actions/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Actions/API.php b/plugins/Actions/API.php
index 64c11ec37c..4c0eff405a 100644
--- a/plugins/Actions/API.php
+++ b/plugins/Actions/API.php
@@ -453,7 +453,7 @@ class API extends \Piwik\Plugin\API
// (in the transition period between pre 1.2 and post 1.2 datatable structure)
$dataTable->filter('ReplaceColumnNames');
$dataTable->filter('Sort', array('nb_visits', 'desc', $naturalSort = false, $expanded));
- $dataTable->queueFilter(function (DataTable $dataTable) {
+ $dataTable->filter(function (DataTable $dataTable) {
foreach ($dataTable->getRows() as $row) {
$url = $row->getMetadata('url');
if ($url) {