Fix tabindex for summaryfield. The textbox area has tabindex 1 already.
authorRaimond Spekking <raymond@users.mediawiki.org>
Fri, 5 Feb 2010 13:43:14 +0000 (13:43 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Fri, 5 Feb 2010 13:43:14 +0000 (13:43 +0000)
includes/EditPage.php

index db32c4b..61273b1 100644 (file)
@@ -1549,7 +1549,7 @@ HTML
                $inputAttrs = ( is_array($inputAttrs) ? $inputAttrs : array() ) + array(
                        'id' => 'wpSummary',
                        'maxlength' => '200',
-                       'tabindex' => '1',
+                       'tabindex' => '2',
                        'size' => 60,
                        'spellcheck' => 'true',
                );