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:
authormattab <matthieu.aubry@gmail.com>2014-05-06 08:10:53 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-06 08:10:53 +0400
commitc828a73d78250daa45834b911af175412904139f (patch)
tree380bb291dafc9a3d880d850eaa645d172dfc8a9c /core/Config.php
parentcd20bd7f7f25f285df49d39d43deb56aff2b2faf (diff)
Removing UI tests to use DB session to see if it helps UI tests
http://builds-artifacts.piwik.org/ui-tests.master/2666.1/processed-ui-screenshots/Updater_main.png
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/Config.php b/core/Config.php
index 0758014b1e..60bf3fbb0d 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -158,14 +158,6 @@ class Config extends Singleton
$this->configCache['Plugins_Tracker'] = $this->configGlobal['Plugins_Tracker'];
$this->configCache['Plugins_Tracker']['Plugins_Tracker'][] = 'DevicesDetection';
}
-
- // to avoid weird session error in travis
- if (empty($pathGlobal)) {
- $configArray = &$this->configCache;
- } else {
- $configArray = &$this->configLocal;
- }
- $configArray['General']['session_save_handler'] = 'dbtable';
}
/**