Index: trunk/extensions/ConfirmAccount/presentation/specialpages/actions/RequestAccount_body.php |
— | — | @@ -2,6 +2,16 @@ |
3 | 3 | |
4 | 4 | class RequestAccountPage extends SpecialPage { |
5 | 5 | |
| 6 | + protected $mUsername, $mRealName, $mType, $mPrevAttachment, $mForgotAttachment, |
| 7 | + $mEmail, $mBio, $mNotes, $mToS, $mSrcName, $mUrls, $mFileSize, $mTempPath; |
| 8 | + |
| 9 | + protected $skin; |
| 10 | + |
| 11 | + /** |
| 12 | + * @var array |
| 13 | + */ |
| 14 | + protected $mAreas, $mAreaSet; |
| 15 | + |
6 | 16 | function __construct() { |
7 | 17 | parent::__construct( 'RequestAccount' ); |
8 | 18 | } |
Index: trunk/extensions/ConfirmAccount/presentation/specialpages/actions/ConfirmAccount_body.php |
— | — | @@ -17,6 +17,8 @@ |
18 | 18 | protected $reqAreaSet; |
19 | 19 | protected $reason; |
20 | 20 | |
| 21 | + protected $specialPageParameter; |
| 22 | + |
21 | 23 | function __construct() { |
22 | 24 | parent::__construct( 'ConfirmAccounts', 'confirmaccount' ); |
23 | 25 | } |