Index: trunk/extensions/ConfirmAccount/ConfirmAccount.sql |
— | — | @@ -28,11 +28,11 @@ |
29 | 29 | -- Expiration date for the user_email_token |
30 | 30 | acr_email_token_expires binary(14), |
31 | 31 | -- A little about this user |
32 | | - acr_bio mediumblob default '', |
| 32 | + acr_bio mediumblob NOT NULL, |
33 | 33 | -- Private info for reviewers to look at when considering request |
34 | | - acr_notes mediumblob default '', |
| 34 | + acr_notes mediumblob NOT NULL, |
35 | 35 | -- Links to recognize/identify this user, CSV, may not be public |
36 | | - acr_urls mediumblob default '', |
| 36 | + acr_urls mediumblob NOT NULL, |
37 | 37 | -- IP address |
38 | 38 | acr_ip VARCHAR(255) NULL default '', |
39 | 39 | |
Index: trunk/extensions/ConfirmAccount/ConfirmAccount_body.php |
— | — | @@ -34,9 +34,9 @@ |
35 | 35 | # Grab other info fields... |
36 | 36 | $this->mRealName = $wgRequest->getText( 'wpRealName' ); |
37 | 37 | $this->mEmail = $wgRequest->getText( 'wpEmail' ); |
38 | | - $this->mBio = $wgRequest->getText( 'wpBio' ); |
39 | | - $this->mNotes = $wgRequest->getText( 'wpNotes' ); |
40 | | - $this->mUrls = $wgRequest->getText( 'wpUrls' ); |
| 38 | + $this->mBio = $wgRequest->getText( 'wpBio', '' ); |
| 39 | + $this->mNotes = $wgRequest->getText( 'wpNotes', '' ); |
| 40 | + $this->mUrls = $wgRequest->getText( 'wpUrls', '' ); |
41 | 41 | $this->mCorrect = $wgRequest->getBool('wpCorrect'); |
42 | 42 | $this->mToS = $wgRequest->getBool('wpToS'); |
43 | 43 | # We may be confirming an email address here |