component: Update ConfirmEdit README.md to use namespaced class names

More details. The class with the namespace was added in place of the CaptchaSessionStore class used
before

Bug: T355991
Change-Id: Ib5e6bb1642229eb27502bae3e582e9b18f34c6f0
This commit is contained in:
obamwonyi 2024-09-23 12:25:04 +01:00
parent 54f8e104fd
commit c4c2ed9768

View file

@ -89,13 +89,13 @@ $wgCaptchaTriggersOnNamespace = [];
* Indicate how to store per-session data required to match up the
* internal captcha data with the editor.
*
* 'CaptchaSessionStore' uses PHP's session storage, which is cookie-based
* 'MediaWiki\Extension\ConfirmEdit\Store\CaptchaSessionStore' uses PHP's session storage, which is cookie-based
* and may fail for anons with cookies disabled.
*
* 'CaptchaCacheStore' uses MediaWiki core's MicroStash,
* for storing captch data with a TTL eviction strategy.
*/
$wgCaptchaStorageClass = 'CaptchaSessionStore';
$wgCaptchaStorageClass = 'MediaWiki\Extension\ConfirmEdit\Store\CaptchaSessionStore';
/**
* Number of seconds a captcha session should last in the data cache