From c4c2ed97684753daf98af55c5bb1b6a8e6ff6a8c Mon Sep 17 00:00:00 2001 From: obamwonyi Date: Mon, 23 Sep 2024 12:25:04 +0100 Subject: [PATCH] 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 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd50c2ada..98b5aaae2 100644 --- a/README.md +++ b/README.md @@ -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