From: Alexandre Emsenhuber Date: Tue, 13 Mar 2012 19:03:59 +0000 (+0000) Subject: Move delcaration of User::$mAllowUsertalk out of the "cache variables" block since... X-Git-Tag: 1.31.0-rc.0~24271 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=a7e20dd87f8eb8e511b9089c24cec85c99205565;p=lhc%2Fweb%2Fwiklou.git Move delcaration of User::$mAllowUsertalk out of the "cache variables" block since it's not part of it; also reorder the cache variables for consistency. --- diff --git a/includes/User.php b/includes/User.php index fd17f2449d..7be23fe1d2 100644 --- a/includes/User.php +++ b/includes/User.php @@ -165,8 +165,8 @@ class User { //@{ var $mId, $mName, $mRealName, $mPassword, $mNewpassword, $mNewpassTime, $mEmail, $mTouched, $mToken, $mEmailAuthenticated, - $mEmailToken, $mEmailTokenExpires, $mRegistration, $mGroups, $mOptionOverrides, - $mEditCount, $mAllowUsertalk; + $mEmailToken, $mEmailTokenExpires, $mRegistration, $mEditCount, + $mGroups, $mOptionOverrides; //@} /** @@ -209,6 +209,11 @@ class User { */ var $mBlock; + /** + * @var bool + */ + var $mAllowUsertalk; + /** * @var Block */