From 3185f1271f1190864797933c9c7c8ea734da3e8c Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 6 Jul 2014 08:22:55 +0200 Subject: [PATCH] Remove tabindex from the drop-down in Special:RevisionDelete It is the only element in the form which has this attribute set, so the tab order was not correct. Bug: 67271 Change-Id: Ifa8fb91f9bf7a60e727ec7376d2bc3a851007634 --- includes/specials/SpecialRevisiondelete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialRevisiondelete.php b/includes/specials/SpecialRevisiondelete.php index d3b168b35b..b90026afa5 100644 --- a/includes/specials/SpecialRevisiondelete.php +++ b/includes/specials/SpecialRevisiondelete.php @@ -417,7 +417,7 @@ class SpecialRevisionDelete extends UnlistedSpecialPage { Xml::listDropDown( 'wpRevDeleteReasonList', $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->text(), $this->msg( 'revdelete-reasonotherlist' )->inContentLanguage()->text(), - $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' ), 'wpReasonDropDown', 1 + $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' ), 'wpReasonDropDown' ) . '' . "\n" . -- 2.20.1