From: Huji Date: Mon, 4 Feb 2008 17:57:38 +0000 (+0000) Subject: (bug 12892) Poor tab indexing on "delete file" form X-Git-Tag: 1.31.0-rc.0~49618 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=6e604c3e45ff6399f11550bc2b15741e2d998e83;p=lhc%2Fweb%2Fwiklou.git (bug 12892) Poor tab indexing on "delete file" form --- 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' ) .