From 6e604c3e45ff6399f11550bc2b15741e2d998e83 Mon Sep 17 00:00:00 2001 From: Huji Date: Mon, 4 Feb 2008 17:57:38 +0000 Subject: [PATCH] (bug 12892) Poor tab indexing on "delete file" form --- RELEASE-NOTES | 1 + includes/FileDeleteForm.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 27956e74cb..c3d136e667 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -360,6 +360,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 12885) Correction for Russian convertPlural function * (bug 12768) Make DatabasePostgres->hasContraint() schema aware. * (bug 12735) Truncate usernames in comments using mb_ functions. +* (bug 12892) Poor tab indexing on "delete file" form == Parser changes in 1.12 == diff --git a/includes/FileDeleteForm.php b/includes/FileDeleteForm.php index 3d16931792..ee40d0654f 100644 --- a/includes/FileDeleteForm.php +++ b/includes/FileDeleteForm.php @@ -134,13 +134,13 @@ class FileDeleteForm { Xml::label( wfMsg( 'filedelete-otherreason' ), 'wpReason' ) . " " . - Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ), array( 'type' => 'text', 'maxlength' => '255', 'tabindex' => '1', 'id' => 'wpReason' ) ) . + Xml::input( 'wpReason', 60, $wgRequest->getText( 'wpReason' ), array( 'type' => 'text', 'maxlength' => '255', 'tabindex' => '2', 'id' => 'wpReason' ) ) . " " . - Xml::submitButton( wfMsg( 'filedelete-submit' ), array( 'name' => 'mw-filedelete-submit', 'id' => 'mw-filedelete-submit' ) ) . + Xml::submitButton( wfMsg( 'filedelete-submit' ), array( 'name' => 'mw-filedelete-submit', 'id' => 'mw-filedelete-submit', 'tabindex' => '3' ) ) . " " . Xml::closeElement( 'table' ) . -- 2.20.1