mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-13 18:07:00 +00:00
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:
parent
54f8e104fd
commit
c4c2ed9768
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue