From 3965ac8a83df44a8151bd85eec73fd524c3bcd5e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 26 Dec 2011 19:50:20 +0000 Subject: [PATCH] * (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. --- FancyCaptcha.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FancyCaptcha.class.php b/FancyCaptcha.class.php index 26227aa..3ce5670 100644 --- a/FancyCaptcha.class.php +++ b/FancyCaptcha.class.php @@ -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 "

\n"; -- 2.30.2