From: Raimond Spekking Date: Fri, 5 Feb 2010 13:43:14 +0000 (+0000) Subject: Fix tabindex for summaryfield. The textbox area has tabindex 1 already. X-Git-Tag: 1.31.0-rc.0~37917 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=faf98d2894d7089713547202aa84b2a4a49f116e;p=lhc%2Fweb%2Fwiklou.git Fix tabindex for summaryfield. The textbox area has tabindex 1 already. --- 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', );