* (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:
Brion Vibber 2011-12-26 19:50:20 +00:00
parent 437bc7b2d8
commit 3965ac8a83
Notes: Brion Vibber 2011-12-26 19:50:20 +00:00

View file

@ -72,6 +72,8 @@ class FancyCaptcha extends SimpleCaptcha {
Html::element( 'input', array(
'name' => 'wpCaptchaWord',
'id' => 'wpCaptchaWord',
'autocorrect' => 'off',
'autocapitalize' => 'off',
'required',
'tabindex' => 1 ) ) . // tab in before the edit textarea
"</p>\n";