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:
-rw-r--r--core/bootstrap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bootstrap.php b/core/bootstrap.php
index 04d161a57b..2e46069641 100644
--- a/core/bootstrap.php
+++ b/core/bootstrap.php
@@ -29,7 +29,7 @@ if (!defined('PIWIK_VENDOR_PATH')) {
// NOTE: the code above must be PHP 4 compatible
require_once PIWIK_INCLUDE_PATH . '/core/testMinimumPhpVersion.php';
-if (session_status() !== PHP_SESSION_ACTIVE) {
+if (session_status() !== PHP_SESSION_ACTIVE && !headers_sent()) {
session_cache_limiter('nocache');
}