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 <tsteur@users.noreply.github.com>2018-10-07 22:51:40 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-10-07 22:51:40 +0300
commit89d8479ac242b2ffc98053fe504ce882086c6999 (patch)
tree6e47c9898547520ab52bf842ca6be84f36c6e153 /core/Tracker/VisitorRecognizer.php
parent5470c4f46cbc00ee704ffee6bfae965412771ad3 (diff)
Add possibility to manage and view Intranet websites (#13473)3.6.1-b3
* Add possibility to manage and view Intranet websites #7724 * more tweaks * ui tests * fix some tests * added missing name * remove intranet setting, added test for tracking * fix various tests * remove test * Update RequestProcessor.php * Update en.json * fix some tests * do not throw exception if site does not exist * seeing just now it is fine to trigger exception * debug error * log only certain requests * Update piwik.php * Update JsProxyTest.php * trying to fix tests * remove debug code * trying to fix tests
Diffstat (limited to 'core/Tracker/VisitorRecognizer.php')
-rw-r--r--core/Tracker/VisitorRecognizer.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/Tracker/VisitorRecognizer.php b/core/Tracker/VisitorRecognizer.php
index 7727156727..4b3be310a2 100644
--- a/core/Tracker/VisitorRecognizer.php
+++ b/core/Tracker/VisitorRecognizer.php
@@ -77,6 +77,11 @@ class VisitorRecognizer
$this->eventDispatcher = $eventDispatcher;
}
+ public function setTrustCookiesOnly($trustCookiesOnly)
+ {
+ $this->trustCookiesOnly = $trustCookiesOnly;
+ }
+
public function findKnownVisitor($configId, VisitProperties $visitProperties, Request $request)
{
$idSite = $request->getIdSite();