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-07 01:37:53 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-07 04:49:22 +0300
commit1664b22d783327de70d2b83de97f66940bff9ec5 (patch)
treefb82664c1924545484c26be0594b6153fbafa562 /core/API/DataTableGenericFilter.php
parent1c921c50f28581e239133bce76dda0955bc11027 (diff)
Fixing some tests and removing processed metrics file (no longer used).
Diffstat (limited to 'core/API/DataTableGenericFilter.php')
-rw-r--r--core/API/DataTableGenericFilter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/API/DataTableGenericFilter.php b/core/API/DataTableGenericFilter.php
index 9cb7599147..e45685df8c 100644
--- a/core/API/DataTableGenericFilter.php
+++ b/core/API/DataTableGenericFilter.php
@@ -216,7 +216,7 @@ class DataTableGenericFilter
foreach ($columnQueryParameters as $queryParamName) {
$queryParamValue = Common::getRequestVar($queryParamName, false);
if (!empty($queryParamValue)
- && ProcessedMetric::isProcessedMetric($queryParamValue) // TODO
+ && $this->report->hasProcessedMetric($queryParamValue)
) {
return true;
}