* Clean up tab order on Special:Blockip
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 15 Aug 2006 23:00:42 +0000 (23:00 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 15 Aug 2006 23:00:42 +0000 (23:00 +0000)
RELEASE-NOTES
includes/SpecialBlockip.php

index d9ee6df..f4c481e 100644 (file)
@@ -130,6 +130,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 6946) Fix unexpected behavior change with GET hits to Special:Export
 * (bug 1866) Improve navigation on Special:Listusers; user now a starting
   point as with Special:Allpages, rather than a pure limit.
+* Clean up tab order on Special:Blockip
 
 
 == Languages updated ==
index de242d1..335ad97 100644 (file)
@@ -143,20 +143,22 @@ class IPBlockForm {
                        <td>&nbsp;</td>
                        <td align=\"left\">
                                " . wfCheckLabel( wfMsg( 'ipbanononly' ),
-                                       'wpAnonOnly', 'wpAnonOnly', $this->BlockAnonOnly ) . "
+                                       'wpAnonOnly', 'wpAnonOnly', $this->BlockAnonOnly,
+                                       array( 'tabindex' => 4 ) ) . "
                        </td>
                </tr>
                <tr>
                        <td>&nbsp;</td>
                        <td align=\"left\">
                                " . wfCheckLabel( wfMsg( 'ipbcreateaccount' ),
-                                       'wpCreateAccount', 'wpCreateAccount', $this->BlockCreateAccount ) . "
+                                       'wpCreateAccount', 'wpCreateAccount', $this->BlockCreateAccount,
+                                       array( 'tabindex' => 5 ) ) . "
                        </td>
                </tr>
                <tr>
                        <td style='padding-top: 1em'>&nbsp;</td>
                        <td style='padding-top: 1em' align=\"left\">
-                               <input tabindex='4' type='submit' name=\"wpBlock\" value=\"{$mIpbsubmit}\" />
+                               <input tabindex='5' type='submit' name=\"wpBlock\" value=\"{$mIpbsubmit}\" />
                        </td>
                </tr>
        </table>