From 88e6f0bbdf859e24be18f7cf6ac8f5c9df61fcc7 Mon Sep 17 00:00:00 2001
From: Matthieu Aubry <matt@piwik.org>
Date: Sat, 20 Sep 2014 21:50:27 +1200
Subject: [PATCH] call clearQueuedFilters()

---
 core/DataTable.php | 4 ++--
 1 file 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
+}
-- 
GitLab