From 31bb255330b8a231c4fbc60f06aef2e3def7c3e5 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Fri, 4 Nov 2011 18:47:14 +0000 Subject: [PATCH] Apply for Bug #31694 -- "During installation, tabbing order (cursor focus) goes to logo instead of 'continue'" Patch From: Grunny --- CREDITS | 1 + includes/installer/WebInstallerPage.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CREDITS b/CREDITS index dd96bc172a..69e106d6ba 100644 --- 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 diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index dd88578e8c..579f114335 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -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 ); -- 2.20.1