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:
authorMatthieu Aubry <matt@piwik.org>2014-09-20 13:50:27 +0400
committerMatthieu Aubry <matt@piwik.org>2014-09-20 13:50:27 +0400
commit88e6f0bbdf859e24be18f7cf6ac8f5c9df61fcc7 (patch)
tree3584d80d960c67aea0ffb4a2e5d3e02b480727e3 /core/DataTable.php
parentcc74e8efef3f821f4f23742ccfee018b2bcbe6d8 (diff)
call clearQueuedFilters()
Diffstat (limited to 'core/DataTable.php')
-rw-r--r--core/DataTable.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/DataTable.php b/core/DataTable.php
index 5895e51f2a..bc5a57cff6 100644
--- a/core/DataTable.php
+++ b/core/DataTable.php
@@ -452,7 +452,7 @@ class DataTable implements DataTableInterface, \IteratorAggregate, \ArrayAccess
foreach ($this->queuedFilters as $filter) {
$this->filter($filter['className'], $filter['parameters']);
}
- $this->queuedFilters = array();
+ $this->clearQueuedFilters();
}
/**
@@ -1670,4 +1670,4 @@ class DataTable implements DataTableInterface, \IteratorAggregate, \ArrayAccess
{
$this->deleteRow($offset);
}
-} \ No newline at end of file
+}