From b6b90e5741f0c9dd0299358dc980d2c8cc19f3ef Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 13 Jul 2011 23:26:52 +0000 Subject: [PATCH] (bug 26360) $wgSessionHandler was overriding system settings unconditionally. Regression I introduced a little over 2 years ago with r49370. --- RELEASE-NOTES-1.19 | 1 + includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index 10332e6456..d1c5efdec2 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -164,6 +164,7 @@ production. * (bug 20781) Move 'mainpagetext' messages to installer's .i18n file. * (bug 29737) "MediaWiki:Qbsettings-directionality" should refer to script, not language. +* (bug 26360) $wgSessionHandler was overriding system settings unconditionally. === API changes in 1.19 === * BREAKING CHANGE: action=watch now requires POST and token. diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 271488f217..3ddddd72a9 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1533,7 +1533,7 @@ $wgSessionsInMemcached = false; * 'session_mysql.' Setting to null skips setting this entirely (which might be * useful if you're doing cross-application sessions, see bug 11381) */ -$wgSessionHandler = 'files'; +$wgSessionHandler = null; /** If enabled, will send MemCached debugging information to $wgDebugLogFile */ $wgMemCachedDebug = false; -- 2.20.1