(bug 26360) $wgSessionHandler was overriding system settings unconditionally. Regress...
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 13 Jul 2011 23:26:52 +0000 (23:26 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 13 Jul 2011 23:26:52 +0000 (23:26 +0000)
RELEASE-NOTES-1.19
includes/DefaultSettings.php

index 10332e6..d1c5efd 100644 (file)
@@ -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.
index 271488f..3ddddd7 100644 (file)
@@ -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;