Deprecate $wgAllowConfirmedEmail

$wgAllowConfirmedEmail is equivalent to $wgGroupPermissions['emailconfirmed']['skipcaptcha'] = true;

Bug: T257164
Change-Id: Ia9e73b8da64ec9c29ddb9b4c069238c33a8e6f23
This commit is contained in:
ZabeMath 2021-03-10 16:33:33 +01:00 committed by Zabe
parent a7ea61ebfa
commit 3bf4fb9583

View file

@ -121,6 +121,9 @@ $wgCaptchaBadLoginExpiration = 5 * 60;
/**
* Allow users who have confirmed their email addresses to post
* URL links without being harassed by the captcha.
*
* @deprecated since 1.36
* $wgGroupPermissions['emailconfirmed']['skipcaptcha'] = true; should be used instead.
*/
$wgAllowConfirmedEmail = false;