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 'plugins/PrivacyManager/DoNotTrackHeaderChecker.php')
-rw-r--r--plugins/PrivacyManager/DoNotTrackHeaderChecker.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PrivacyManager/DoNotTrackHeaderChecker.php b/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
index 93c0e79fca..5ee5642fdd 100644
--- a/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
+++ b/plugins/PrivacyManager/DoNotTrackHeaderChecker.php
@@ -37,9 +37,9 @@ class DoNotTrackHeaderChecker
) {
$request = new Request($_REQUEST);
$ua = $request->getUserAgent();
- if (strpos($ua, 'MSIE 10') !== false
- || strpos($ua, 'Trident/7') !== false) {
- Common::printDebug("INTERNET EXPLORER 10 and 11 enable DoNotTrack by default; so Piwik ignores DNT for all IE10 + IE11 browsers...");
+ if (strpos($ua, 'MSIE') !== false
+ || strpos($ua, 'Trident') !== false) {
+ Common::printDebug("INTERNET EXPLORER enable DoNotTrack by default; so Piwik ignores DNT IE browsers...");
return;
}