From 3bf4fb9583def8d2d24be5d257d21133d4553181 Mon Sep 17 00:00:00 2001 From: ZabeMath Date: Wed, 10 Mar 2021 16:33:33 +0100 Subject: [PATCH] Deprecate $wgAllowConfirmedEmail $wgAllowConfirmedEmail is equivalent to $wgGroupPermissions['emailconfirmed']['skipcaptcha'] = true; Bug: T257164 Change-Id: Ia9e73b8da64ec9c29ddb9b4c069238c33a8e6f23 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 04eee296f..93052bb45 100644 --- a/README.md +++ b/README.md @@ -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;