mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-27 17:40:11 +00:00
* (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.
This commit is contained in:
parent
437bc7b2d8
commit
3965ac8a83
Notes:
Brion Vibber
2011-12-26 19:50:20 +00:00
|
@ -72,6 +72,8 @@ class FancyCaptcha extends SimpleCaptcha {
|
||||||
Html::element( 'input', array(
|
Html::element( 'input', array(
|
||||||
'name' => 'wpCaptchaWord',
|
'name' => 'wpCaptchaWord',
|
||||||
'id' => 'wpCaptchaWord',
|
'id' => 'wpCaptchaWord',
|
||||||
|
'autocorrect' => 'off',
|
||||||
|
'autocapitalize' => 'off',
|
||||||
'required',
|
'required',
|
||||||
'tabindex' => 1 ) ) . // tab in before the edit textarea
|
'tabindex' => 1 ) ) . // tab in before the edit textarea
|
||||||
"</p>\n";
|
"</p>\n";
|
||||||
|
|
Loading…
Reference in a new issue