From faf98d2894d7089713547202aa84b2a4a49f116e Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Fri, 5 Feb 2010 13:43:14 +0000 Subject: [PATCH] Fix tabindex for summaryfield. The textbox area has tabindex 1 already. --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index db32c4bf48..61273b117d 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1549,7 +1549,7 @@ HTML $inputAttrs = ( is_array($inputAttrs) ? $inputAttrs : array() ) + array( 'id' => 'wpSummary', 'maxlength' => '200', - 'tabindex' => '1', + 'tabindex' => '2', 'size' => 60, 'spellcheck' => 'true', ); -- 2.20.1