r107337 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r107336‎ | r107337 | r107338 >
Date:19:50, 26 December 2011
Author:brion
Status:ok (Comments)
Tags:
Comment:
* (bug 33366) ConfirmEdit: Disable autocorrect, autocapitalize on FancyCaptcha's input form to aid tablet users

Autocorrect / autocapitalize could mess up your input data, making it harder to get through the captcha. Disabled it so what you type is what you get.
Modified paths:
  • /trunk/extensions/ConfirmEdit/FancyCaptcha.class.php (modified) (history)

Diff [purge]

Index: trunk/extensions/ConfirmEdit/FancyCaptcha.class.php
@@ -72,6 +72,8 @@
7373 Html::element( 'input', array(
7474 'name' => 'wpCaptchaWord',
7575 'id' => 'wpCaptchaWord',
 76+ 'autocorrect' => 'off',
 77+ 'autocapitalize' => 'off',
7678 'required',
7779 'tabindex' => 1 ) ) . // tab in before the edit textarea
7880 "</p>\n";

Follow-up revisions

RevisionCommit summaryAuthorDate
r107340MFT r107337reedy20:01, 26 December 2011
r107929MFT r104622, r104867, r107120, r107337reedy19:34, 3 January 2012

Comments

#Comment by Brion VIBBER (talk | contribs)   19:51, 26 December 2011

This is an easy quick fix; would appreciate a merge & deploy. Thanks!

Status & tagging log