Apply for Bug #31694 -- "During installation, tabbing order (cursor focus) goes to...
authorMark A. Hershberger <mah@users.mediawiki.org>
Fri, 4 Nov 2011 18:47:14 +0000 (18:47 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Fri, 4 Nov 2011 18:47:14 +0000 (18:47 +0000)
Patch From: Grunny

CREDITS
includes/installer/WebInstallerPage.php

diff --git a/CREDITS b/CREDITS
index dd96bc1..69e106d 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -100,6 +100,7 @@ following names for their contribution to the product.
 * Erwin Dokter
 * FunPika
 * Gero Scholz
+* Grunny
 * Harry Burt
 * Ireas
 * Jaska Zedlik
index dd88578..579f114 100644 (file)
@@ -223,7 +223,7 @@ class WebInstaller_Language extends WebInstallerPage {
 
                $s = $helpHtml;
 
-               $s .= Html::openElement( 'select', array( 'id' => $name, 'name' => $name ) ) . "\n";
+               $s .= Html::openElement( 'select', array( 'id' => $name, 'name' => $name, 'tabindex' => $this->parent->nextTabIndex() ) ) . "\n";
 
                $languages = Language::getLanguageNames();
                ksort( $languages );