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:
authormattab <matthieu.aubry@gmail.com>2014-12-08 05:50:36 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-08 05:50:36 +0300
commit7e8b6c258ffdb579910049c9b7f0d42f931d5508 (patch)
treeb66e4f8ca8d937102bb6d8c299bf40e33610d7f9 /core/Tracker.php
parentdca8fe4e075357ab5310d8213a669cc217e092ef (diff)
fixes https://github.com/PiwikPRO/plugin-InterSites/issues/2 Added notification to user when Config not setup properly + Update system tests to set the new required config
Diffstat (limited to 'core/Tracker.php')
-rw-r--r--core/Tracker.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/Tracker.php b/core/Tracker.php
index 99a712a887..cb7b4494c5 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -242,6 +242,11 @@ class Tracker
}
// Tests can force the use of 3rd party cookie for ID visitor
+ if (Common::getRequestVar('forceEnableFingerprintingAcrossWebsites', false, null, $args) == 1) {
+ TrackerConfig::setConfigValue('enable_fingerprinting_across_websites', 1);
+ }
+
+ // Tests can force the use of 3rd party cookie for ID visitor
if (Common::getRequestVar('forceUseThirdPartyCookie', false, null, $args) == 1) {
TrackerConfig::setConfigValue('use_third_party_id_cookie', 1);
}