From e25322e5cbd50d49c8f863a120ea780acac688be Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Mon, 27 Apr 2009 12:04:28 +0000 Subject: [PATCH] Clean up remnants from half-done solutions in r49925, per comments on code review --- includes/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/User.php b/includes/User.php index 02111b7bbc..12577f6c67 100644 --- a/includes/User.php +++ b/includes/User.php @@ -282,7 +282,7 @@ class User { # Try cache $key = wfMemcKey( 'user', 'id', $this->mId ); $data = $wgMemc->get( $key ); - if ( !is_array( $data ) || $data['mVersion'] < 'MW_USER_VERSION' ) { + if ( !is_array( $data ) || $data['mVersion'] < MW_USER_VERSION ) { # Object is expired, load from DB $data = false; } @@ -972,7 +972,7 @@ class User { $this->mSkin = null; $this->mRights = null; $this->mEffectiveGroups = null; - $this->mOptions = array(); + $this->mOptions = null; if ( $reloadFrom ) { $this->mDataLoaded = false; -- 2.20.1