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>2020-02-07 01:19:10 +0300
committerGitHub <noreply@github.com>2020-02-07 01:19:10 +0300
commit40d169fe7c67993292f5e64498cd5b22d9fcc75f (patch)
treea61ee40372831067abf125bfc72c7d17aec54bb5 /plugins/Events
parent76ac42c23dea9d098c24be1bade6f81c1dcd1a0f (diff)
Reduce risk of segmentation fault in visit log (#15471)
Diffstat (limited to 'plugins/Events')
-rw-r--r--plugins/Events/VisitorDetails.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Events/VisitorDetails.php b/plugins/Events/VisitorDetails.php
index 7f9af081ef..5e58b3fc0c 100644
--- a/plugins/Events/VisitorDetails.php
+++ b/plugins/Events/VisitorDetails.php
@@ -65,6 +65,7 @@ class VisitorDetails extends VisitorDetailsAbstract
}
$view = new View('@Events/_actionEvent.twig');
+ $view->sendHeadersWhenRendering = false;
$view->action = $action;
$view->previousAction = $previousAction;
$view->visitInfo = $visitorDetails;