Attached. Patch for 181 should follow in the next day or so. With bugzilla in place, would people prefer patches to be attached to bug reports there?
-IK
Index: includes/User.php =================================================================== RCS file: /cvsroot/wikipedia/phase3/includes/User.php,v retrieving revision 1.67 diff -u -b -r1.67 User.php --- includes/User.php 15 Aug 2004 15:01:33 -0000 1.67 +++ includes/User.php 23 Aug 2004 14:05:06 -0000 @@ -155,6 +155,8 @@ global $wgSessionsInMemcached, $wgCookiePath, $wgCookieDomain; if( $wgSessionsInMemcached ) { require_once( 'MemcachedSessions.php' ); + } elseif ( 'user' == ini_get( 'session.save_handler' ) ) { + ini_set ( 'session.save_handler', 'files' ); } session_set_cookie_params( 0, $wgCookiePath, $wgCookieDomain ); session_cache_limiter( 'private, must-revalidate' );