-
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Code in SES\SignupFieldsParserFunction suggests that Captcha is supported.
// Give authentication and captcha plugins a chance to modify the form
$type = 'signup';
$wgAuth->modifyUITemplate( $this->userFieldsCreateTemplate, $type );
if( Settings::get( 'useCaptcha' ) && isset( $GLOBALS['wgCaptchaClass'] ) ) {
$captchaObject = new $GLOBALS['wgCaptchaClass'];
$captchaObject->injectUserCreate( $this->userFieldsCreateTemplate );
}
Reactions are currently unavailable