Index: trunk/phase3/includes/specials/SpecialUserrights.php |
— | — | @@ -384,7 +384,7 @@ |
385 | 385 | <tr> |
386 | 386 | <td></td> |
387 | 387 | <td class='mw-submit'>" . |
388 | | - Xml::submitButton( wfMsg( 'saveusergroups' ), array( 'name' => 'saveusergroups' ) ) . |
| 388 | + Xml::submitButton( wfMsg( 'saveusergroups' ), array( 'name' => 'saveusergroups', 'accesskey' => 's' ) ) . |
389 | 389 | "</td> |
390 | 390 | </tr>" . |
391 | 391 | Xml::closeElement( 'table' ) . "\n" . |
Index: trunk/phase3/includes/specials/SpecialImport.php |
— | — | @@ -159,7 +159,7 @@ |
160 | 160 | <td> |
161 | 161 | </td> |
162 | 162 | <td>" . |
163 | | - Xml::submitButton( wfMsg( 'import-interwiki-submit' ) ) . |
| 163 | + Xml::submitButton( wfMsg( 'import-interwiki-submit' ), array( 'accesskey' = 's' ) ) . |
164 | 164 | "</td> |
165 | 165 | </tr>" . |
166 | 166 | Xml::closeElement( 'table' ). |
Index: trunk/phase3/includes/specials/SpecialExport.php |
— | — | @@ -278,7 +278,7 @@ |
279 | 279 | //$form .= Xml::checkLabel( wfMsg( 'export-images' ), 'images', 'wpExportImages', false ) . '<br />'; |
280 | 280 | $form .= Xml::checkLabel( wfMsg( 'export-download' ), 'wpDownload', 'wpDownload', true ) . '<br />'; |
281 | 281 | |
282 | | - $form .= Xml::submitButton( wfMsg( 'export-submit' ) ); |
| 282 | + $form .= Xml::submitButton( wfMsg( 'export-submit' ), array( 'accesskey' => 's' ) ); |
283 | 283 | $form .= Xml::closeElement( 'form' ); |
284 | 284 | $wgOut->addHtml( $form ); |
285 | 285 | } |
Index: trunk/phase3/includes/specials/SpecialBlockip.php |
— | — | @@ -246,7 +246,7 @@ |
247 | 247 | <td style='padding-top: 1em'> </td> |
248 | 248 | <td class='mw-submit' style='padding-top: 1em'>" . |
249 | 249 | Xml::submitButton( wfMsg( 'ipbsubmit' ), |
250 | | - array( 'name' => 'wpBlock', 'tabindex' => '12' ) ) . " |
| 250 | + array( 'name' => 'wpBlock', 'tabindex' => '12', 'accesskey' => 's' ) ) . " |
251 | 251 | </td> |
252 | 252 | </tr>" . |
253 | 253 | Xml::closeElement( 'table' ) . |
Index: trunk/phase3/includes/specials/SpecialEmailuser.php |
— | — | @@ -130,7 +130,7 @@ |
131 | 131 | <textarea id=\"wpText\" name=\"wpText\" rows='20' cols='80' style=\"width: 100%;\">" . htmlspecialchars( $this->text ) . |
132 | 132 | "</textarea> |
133 | 133 | " . wfCheckLabel( $emc, 'wpCCMe', 'wpCCMe', $wgUser->getBoolOption( 'ccmeonemails' ) ) . "<br /> |
134 | | -<input type='submit' name=\"wpSend\" value=\"{$ems}\" /> |
| 134 | +<input type='submit' name=\"wpSend\" value=\"{$ems}\" accesskey=\"s\" /> |
135 | 135 | <input type='hidden' name='wpEditToken' value=\"$token\" /> |
136 | 136 | </form>\n" ); |
137 | 137 | |
Index: trunk/extensions/ParserDiffTest/ParserDiffTest_body.php |
— | — | @@ -126,7 +126,7 @@ |
127 | 127 | $form .= Xml::openElement( 'textarea', array( 'name' => 'pdt_input', 'id' => 'pdt_input', 'rows' => 10, 'cols' => 10 ) ); |
128 | 128 | $form .= htmlspecialchars( $text ); |
129 | 129 | $form .= Xml::closeElement( 'textarea' ); |
130 | | - $form .= '<p>' . Xml::submitButton( wfMsg( 'pdtest_ok' ) ) . ' ' . |
| 130 | + $form .= '<p>' . Xml::submitButton( wfMsg( 'pdtest_ok' ), array( 'accesskey' => 's' ) ) . ' ' . |
131 | 131 | Xml::submitButton( wfMsg( 'pdtest_get_text' ), array( 'name' => 'pdt_get_text' ) ) . '</p>'; |
132 | 132 | $form .= "</fieldset>\n"; |
133 | 133 | $form .= Xml::closeElement( 'form' ); |
Index: trunk/extensions/ExpandTemplates/ExpandTemplates_body.php |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | if ( $this->isNewParser ) { |
83 | 83 | $form .= '<p>' . Xml::checkLabel( wfMsg( 'expand_templates_generate_xml' ), 'generate_xml', 'generate_xml', $this->generateXML ) . '</p>'; |
84 | 84 | } |
85 | | - $form .= '<p>' . Xml::submitButton( wfMsg( 'expand_templates_ok' ) ) . '</p>'; |
| 85 | + $form .= '<p>' . Xml::submitButton( wfMsg( 'expand_templates_ok' ), array( 'accesskey' => 's' ) ) . '</p>'; |
86 | 86 | $form .= "</fieldset>\n"; |
87 | 87 | $form .= Xml::closeElement( 'form' ); |
88 | 88 | return $form; |