Index: trunk/extensions/ConfirmAccount/ConfirmAccount_body.php |
— | — | @@ -37,7 +37,6 @@ |
38 | 38 | $this->mBio = $wgRequest->getText( 'wpBio', '' ); |
39 | 39 | $this->mNotes = $wgRequest->getText( 'wpNotes', '' ); |
40 | 40 | $this->mUrls = $wgRequest->getText( 'wpUrls', '' ); |
41 | | - $this->mCorrect = $wgRequest->getBool('wpCorrect'); |
42 | 41 | $this->mToS = $wgRequest->getBool('wpToS'); |
43 | 42 | # We may be confirming an email address here |
44 | 43 | $emailCode = $wgRequest->getText( 'wpEmailToken' ); |
— | — | @@ -122,8 +121,6 @@ |
123 | 122 | $form .= '</fieldset>'; |
124 | 123 | } |
125 | 124 | } |
126 | | - $form .= "<p>".Xml::checkLabel( wfMsgExt( 'requestaccount-correct', |
127 | | - array('parseinline') ), 'wpCorrect', 'wpCorrect', $this->mCorrect )."</p>\n"; |
128 | 125 | $form .= "<p>".Xml::checkLabel( wfMsgExt( 'requestaccount-tos', |
129 | 126 | array('parseinline') ), 'wpToS', 'wpToS', $this->mToS )."</p>\n"; |
130 | 127 | $form .= Xml::hidden( 'title', $wgTitle->getPrefixedText() )."\n"; |
— | — | @@ -159,7 +156,7 @@ |
160 | 157 | return; |
161 | 158 | } |
162 | 159 | # Make sure user agrees to policy here |
163 | | - if( !$this->mCorrect || !$this->mToS ) { |
| 160 | + if( !$this->mToS ) { |
164 | 161 | $this->showForm( wfMsgHtml('requestaccount-agree') ); |
165 | 162 | return; |
166 | 163 | } |
Index: trunk/extensions/ConfirmAccount/ConfirmAccount.i18n.php |
— | — | @@ -35,8 +35,8 @@ |
36 | 36 | 'requestaccount-agree' => 'You must certify that your real name is correct and that you agree to our Terms of Service.', |
37 | 37 | 'requestaccount-inuse' => 'Username is already in use in a pending account request.', |
38 | 38 | 'requestaccount-tooshort' => 'Your biography must be at least be $1 words long.', |
39 | | - 'requestaccount-tos' => 'I have read and agree to abide by the Terms of Service of {{SITENAME}}.', |
40 | | - 'requestaccount-correct' => 'I certify that the name I have specified under "Real name" is in fact my own real name.', |
| 39 | + 'requestaccount-tos' => 'I have read and agree to abide by the Terms of Service of {{SITENAME}}. The name I have specified |
| 40 | + under "Real name" is in fact my own real name.', |
41 | 41 | 'requestacount-submit' => 'Request account', |
42 | 42 | 'requestaccount-sent' => 'Your account request has successfully been sent and is now pending review.', |
43 | 43 | 'request-account-econf' => 'Your e-mail address has been confirmed and will be listed as such in your account |