I have QuestyCaptcha setup on my wiki. When I go to Request account, I see the QuestyCaptcha question, but whether I enter a correct or incorrect value the account request is processed, i.e. I see the resulting "Your account request has been sent and is now pending review. A confirmation email has been sent to your email address." Additionally, when I look under Open account requests the account request does appear there.
The site is on:
MediaWiki R1.34
PHP V 7.3.17
ConfirmEdit section in LocalSettings.php looks as follows:
// QuestyCaptcha Settings
wfLoadExtensions([ 'ConfirmEdit', 'ConfirmEdit/QuestyCaptcha' ]);
$wgCaptchaClass = 'QuestyCaptcha';
# QuestyCaptcha questions:
$wgCaptchaQuestions = [
'How many fingers on one hand?' => [ 5, 'five' ],
];
$wgMainCacheType = CACHE_ANYTHING;
$wgCaptchaTriggers['createaccount'] = true;
Any guidance would be greatly appreciated!