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:
authordiosmosis <benaka@piwik.pro>2014-11-12 07:28:12 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-12 07:28:12 +0300
commitd07d24c59780587c58727a5295951a2dfcb8fc58 (patch)
tree30b83680ad82aa33094bbc349209847b147d9db7 /core/DataTable
parent4fd080617e0242dd2fb45c0f7ae09e66e21107c0 (diff)
Fixing ViewDataTableTest UI test.
Diffstat (limited to 'core/DataTable')
-rw-r--r--core/DataTable/Filter/ExcludeLowPopulation.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/DataTable/Filter/ExcludeLowPopulation.php b/core/DataTable/Filter/ExcludeLowPopulation.php
index ee135b59d6..cf54c5c7eb 100644
--- a/core/DataTable/Filter/ExcludeLowPopulation.php
+++ b/core/DataTable/Filter/ExcludeLowPopulation.php
@@ -10,6 +10,7 @@ namespace Piwik\DataTable\Filter;
use Piwik\DataTable;
use Piwik\DataTable\BaseFilter;
+use Piwik\Plugin\Metric;
/**
* Deletes all rows for which a specific column has a value that is lower than
@@ -59,6 +60,7 @@ class ExcludeLowPopulation extends BaseFilter
public function __construct($table, $columnToFilter, $minimumValue, $minimumPercentageThreshold = false)
{
parent::__construct($table);
+
$this->columnToFilter = $columnToFilter;
if ($minimumValue == 0) {