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-12-04 08:49:15 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-12-04 08:49:15 +0300
commit332f42c8798685d1a7df425ebfa42b35937b9b5f (patch)
tree943b2cc35cc83e99a96c58454e8f9df4c45271c1 /plugins/Installation/Controller.php
parent12b522d23fa4fba633686792319a7aa02ed266e6 (diff)
Use db sessions by default, deprecate file session handler (#13540)
* use db sessions by default, deprecate file session handler * trying to fix tests
Diffstat (limited to 'plugins/Installation/Controller.php')
-rw-r--r--plugins/Installation/Controller.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/Installation/Controller.php b/plugins/Installation/Controller.php
index 1f85083ef1..8dd65f6899 100644
--- a/plugins/Installation/Controller.php
+++ b/plugins/Installation/Controller.php
@@ -552,9 +552,6 @@ class Controller extends \Piwik\Plugin\ControllerAdmin
$config = Config::getInstance();
// make sure DB sessions are used if the filesystem is NFS
- if (Filesystem::checkIfFileSystemIsNFS()) {
- $config->General['session_save_handler'] = 'dbtable';
- }
if (count($headers = ProxyHeaders::getProxyClientHeaders()) > 0) {
$config->General['proxy_client_headers'] = $headers;
}