diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/ConfirmEdit/FancyCaptcha.class.php | 3 | ||||
-rw-r--r-- | extensions/ConfirmEdit/QuestyCaptcha.class.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/extensions/ConfirmEdit/FancyCaptcha.class.php b/extensions/ConfirmEdit/FancyCaptcha.class.php index b2f5c10e..61723656 100644 --- a/extensions/ConfirmEdit/FancyCaptcha.class.php +++ b/extensions/ConfirmEdit/FancyCaptcha.class.php @@ -72,6 +72,9 @@ class FancyCaptcha extends SimpleCaptcha { Xml::element( 'input', array( 'name' => 'wpCaptchaWord', 'id' => 'wpCaptchaWord', + 'autocorrect' => 'off', + 'autocapitalize' => 'off', + 'required', 'tabindex' => 1 ) ) . // tab in before the edit textarea "</p>\n"; } diff --git a/extensions/ConfirmEdit/QuestyCaptcha.class.php b/extensions/ConfirmEdit/QuestyCaptcha.class.php index 478fcf34..90e4b186 100644 --- a/extensions/ConfirmEdit/QuestyCaptcha.class.php +++ b/extensions/ConfirmEdit/QuestyCaptcha.class.php @@ -64,7 +64,7 @@ class QuestyCaptcha extends SimpleCaptcha { global $wgOut; $wgOut->setPageTitle( wfMsg( 'captchahelp-title' ) ); $wgOut->addWikiText( wfMsg( 'questycaptchahelp-text' ) ); - if ( $this->storage->cookiesNeeded() ) { + if ( CaptchaStore::get()->cookiesNeeded() ) { $wgOut->addWikiText( wfMsg( 'captchahelp-cookies-needed' ) ); } } |