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:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-11 13:43:04 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-12 11:58:51 +0400
commit5dfe15c2d7e4050c5dd737d6b76485daff84713d (patch)
treec37d1e1a123a3b17d06255b7f6f62da1380ccab7 /plugins
parentc548f4950f6aa395aa99117c84b765ac42b1e2b2 (diff)
refs #5950 wondering whether we break any tests when applying the clean visitors filter immediately (before sort)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Live/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/API.php b/plugins/Live/API.php
index 357114ebf4..f1c0906178 100644
--- a/plugins/Live/API.php
+++ b/plugins/Live/API.php
@@ -164,7 +164,7 @@ class API extends \Piwik\Plugin\API
Piwik::checkUserHasViewAccess($idSite);
$dataTable = $this->loadLastVisitorDetailsFromDatabase($idSite, $period, $date, $segment, $countVisitorsToFetch, $visitorId = false, $minTimestamp, $filterSortOrder);
- $this->addFilterToCleanVisitors($dataTable, $idSite, $flat, $doNotFetchActions);
+ $this->addFilterToCleanVisitors($dataTable, $idSite, $flat, $doNotFetchActions, $filterNow = true);
return $dataTable;
}