From: Mark A. Hershberger Date: Fri, 4 Nov 2011 18:47:14 +0000 (+0000) Subject: Apply for Bug #31694 -- "During installation, tabbing order (cursor focus) goes to... X-Git-Tag: 1.31.0-rc.0~26698 X-Git-Url: http://git.cyclocoop.org/%22.%20generer_url_ecrire%28%22sites_tous%22%2C%22%22%29.%20%22?a=commitdiff_plain;h=31bb255330b8a231c4fbc60f06aef2e3def7c3e5;p=lhc%2Fweb%2Fwiklou.git Apply for Bug #31694 -- "During installation, tabbing order (cursor focus) goes to logo instead of 'continue'" Patch From: Grunny --- 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 );