From 1d0504fc6bac4d5c3b35ad7485d86cd31b8462bf Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 15 Aug 2006 23:00:42 +0000 Subject: [PATCH] * Clean up tab order on Special:Blockip --- RELEASE-NOTES | 1 + includes/SpecialBlockip.php | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d9ee6df9e6..f4c481edd9 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/SpecialBlockip.php b/includes/SpecialBlockip.php index de242d1e7e..335ad97fa5 100644 --- a/includes/SpecialBlockip.php +++ b/includes/SpecialBlockip.php @@ -143,20 +143,22 @@ class IPBlockForm {   " . wfCheckLabel( wfMsg( 'ipbanononly' ), - 'wpAnonOnly', 'wpAnonOnly', $this->BlockAnonOnly ) . " + 'wpAnonOnly', 'wpAnonOnly', $this->BlockAnonOnly, + array( 'tabindex' => 4 ) ) . "   " . wfCheckLabel( wfMsg( 'ipbcreateaccount' ), - 'wpCreateAccount', 'wpCreateAccount', $this->BlockCreateAccount ) . " + 'wpCreateAccount', 'wpCreateAccount', $this->BlockCreateAccount, + array( 'tabindex' => 5 ) ) . "   - + -- 2.20.1