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:
Diffstat (limited to 'modules/DataTable.php')
-rw-r--r--modules/DataTable.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/DataTable.php b/modules/DataTable.php
index da835fd200..3f61adb598 100644
--- a/modules/DataTable.php
+++ b/modules/DataTable.php
@@ -150,14 +150,12 @@ class Piwik_DataTable
{
foreach($this->queuedFilters as $filter)
{
- // make a reflection object
$reflectionObj = new ReflectionClass($filter['className']);
// the first parameter of a filter is the DataTable
// we add the current datatable as the parameter
$filter['parameters'] = array_merge(array($this), $filter['parameters']);
- // use Reflection to create a new instance, using the $args
$filter = $reflectionObj->newInstanceArgs($filter['parameters']);
}
$this->queuedFilters = array();
@@ -402,7 +400,7 @@ class Piwik_DataTable
$aSerializedDataTable = $aSerializedDataTable + $serialized;
}
}
-
+ //TODO COmment
$forcedId = $this->getId();
if($depth==0)
{