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 'core/Tracker/Cache.php')
-rw-r--r--core/Tracker/Cache.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Tracker/Cache.php b/core/Tracker/Cache.php
index 4f7e5809f3..72910c11e0 100644
--- a/core/Tracker/Cache.php
+++ b/core/Tracker/Cache.php
@@ -8,6 +8,7 @@
* @category Piwik
* @package Piwik
*/
+use Piwik\ArchiveProcessor\Rules;
use Piwik\Config;
use Piwik\Piwik;
@@ -96,7 +97,7 @@ class Piwik_Tracker_Cache
Piwik_Tracker::initCorePiwikInTrackerMode();
$cacheContent = array(
- 'isBrowserTriggerEnabled' => Piwik_ArchiveProcessor_Rules::isBrowserTriggerEnabled(),
+ 'isBrowserTriggerEnabled' => Rules::isBrowserTriggerEnabled(),
'lastTrackerCronRun' => Piwik_GetOption('lastTrackerCronRun'),
'currentLocationProviderId' => Piwik_UserCountry_LocationProvider::getCurrentProviderId(),
);