From: Chad Horohoe Date: Wed, 13 Jul 2011 23:26:52 +0000 (+0000) Subject: (bug 26360) $wgSessionHandler was overriding system settings unconditionally. Regress... X-Git-Tag: 1.31.0-rc.0~28854 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=b6b90e5741f0c9dd0299358dc980d2c8cc19f3ef;p=lhc%2Fweb%2Fwiklou.git (bug 26360) $wgSessionHandler was overriding system settings unconditionally. Regression I introduced a little over 2 years ago with r49370. --- 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;