Index: trunk/extensions/ConfirmAccount/ConfirmAccount_body.php |
— | — | @@ -69,7 +69,7 @@ |
70 | 70 | $action = $wgTitle->escapeLocalUrl( 'action=submit' ); |
71 | 71 | $form = "<form name='accountrequest' action='$action' method='post'><fieldset>"; |
72 | 72 | $form .= '<legend>' . wfMsgHtml('requestacount-legend1') . '</legend>'; |
73 | | - $form .= "<p>".wfMsgExt( 'requestacount-acc-text', array('parse') )."</p>\n"; |
| 73 | + $form .= wfMsgExt( 'requestacount-acc-text', array('parse') )."\n"; |
74 | 74 | $form .= '<table cellpadding=\'4\'>'; |
75 | 75 | if( $wgUseRealNamesOnly ) { |
76 | 76 | $form .= "<tr><td>".wfMsgHtml('username')."</td>"; |
— | — | @@ -84,11 +84,11 @@ |
85 | 85 | |
86 | 86 | $form .= '<fieldset>'; |
87 | 87 | $form .= '<legend>' . wfMsgHtml('requestacount-legend2') . '</legend>'; |
88 | | - $form .= "<p>".wfMsgExt( 'requestaccount-bio-text', array('parse') )."</p>\n"; |
| 88 | + $form .= wfMsgExt( 'requestaccount-bio-text', array('parse') )."\n"; |
89 | 89 | $form .= '<table cellpadding=\'4\'>'; |
90 | 90 | $form .= "<tr><td>".Xml::label( wfMsgHtml('requestaccount-real'), 'wpRealName' )."</td>"; |
91 | 91 | $form .= "<td>".Xml::input( 'wpRealName', 35, $this->mRealName, array('id' => 'wpRealName') )."</td></tr>\n"; |
92 | | - $form .= '</table cellpadding=\'4\'>'; |
| 92 | + $form .= '</table>'; |
93 | 93 | $form .= "<p>".wfMsgHtml('requestaccount-bio')."</p>"; |
94 | 94 | $form .= "<p><textarea tabindex='1' name='wpBio' id='wpBio' rows='10' cols='80' style='width:100%'>" . |
95 | 95 | $this->mBio . |
— | — | @@ -97,7 +97,7 @@ |
98 | 98 | |
99 | 99 | $form .= '<fieldset>'; |
100 | 100 | $form .= '<legend>' . wfMsgHtml('requestacount-legend3') . '</legend>'; |
101 | | - $form .= "<p>".wfMsgExt( 'requestacount-ext-text', array('parse') )."</p>\n"; |
| 101 | + $form .= wfMsgExt( 'requestacount-ext-text', array('parse') )."\n"; |
102 | 102 | |
103 | 103 | $form .= "<p>".wfMsgHtml('requestaccount-notes')."</p>\n"; |
104 | 104 | $form .= "<p><textarea tabindex='1' name='wpNotes' id='wpNotes' rows='3' cols='80' style='width:100%'>" . |
— | — | @@ -128,7 +128,7 @@ |
129 | 129 | array('parseinline') ), 'wpToS', 'wpToS', $this->mToS )."</p>\n"; |
130 | 130 | $form .= Xml::hidden( 'title', $wgTitle->getPrefixedText() )."\n"; |
131 | 131 | $form .= Xml::hidden( 'wpEditToken', $wgUser->editToken() )."\n"; |
132 | | - $form .= "<p>".Xml::submitButton( wfMsgHtml( 'requestacount-submit') ) . "</p></fieldset>"; |
| 132 | + $form .= "<p>".Xml::submitButton( wfMsgHtml( 'requestacount-submit') ) . "</p>"; |
133 | 133 | $form .= '</form>'; |
134 | 134 | |
135 | 135 | $wgOut->addHTML( $form ); |