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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-17 03:49:21 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-17 03:49:21 +0400
commitcdb1c043692c92c6e9a5d9a00a231d4515bb7075 (patch)
tree7950dca4fe752e36bbd004c5a980c7783bedb119 /core
parentff9b4ca855c91d53f49331fe971c31cf8091efc0 (diff)
Refs #4077, fix regression.
Diffstat (limited to 'core')
-rw-r--r--core/ViewDataTable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index d063c7f08b..1d97f469dd 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -577,7 +577,7 @@ class ViewDataTable
// Finally, apply datatable filters that were queued (should be 'presentation' filters that
// do not affect the number of rows)
if (!$this->areQueuedFiltersDisabled()) {
- $this->applyQueuedFilters();
+ $this->dataTable->applyQueuedFilters();
foreach ($otherFilters as $filter) {
$this->dataTable->filter($filter[0], $filter[1]);