[QuestyCaptcha] Help page on 1.18 is broken
Fragment of a discussion from Extension talk:ConfirmEdit
I had the same problem using 1.16. The following one-line change to QuestyCaptch.class.php seems to fix the problem:
===================================================================
--- QuestyCaptcha.class.php (revision 103604)
+++ QuestyCaptcha.class.php (working copy)
@@ -65,7 +65,7 @@
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' ) );
}
}
Affirmative for MW 1.17. too. I have filed a bug report for this. Cheers