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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-04-09 08:11:48 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-04-09 08:12:09 +0400
commitaae86c849c1970762bbf253bc1e1e3494f44eaf6 (patch)
treed9b4508aad99907f4e48bd5b043387f1f9602e2c /core/Config.php
parent58291bc9a2ab276df4e8a346f6ac486f56240a2c (diff)
Do not modify configCache when overriding session handler for travis build.
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Config.php b/core/Config.php
index 71f576c482..d17947fb52 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -160,7 +160,7 @@ class Config extends Singleton
}
// to avoid weird session error in travis
- $this->configCache['General']['session_save_handler'] = 'dbtables';
+ $this->configLocal['General']['session_save_handler'] = 'dbtables';
}
/**