From 8c6502de2f8ec2bd8382cd6945c327d7be400e14 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 28 Jan 2026 05:34:41 +0000
Subject: [PATCH] =Queue cleanup - seems to be working enough to get legacy before and after going!

---
 inc/managers/LoginManager.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/managers/LoginManager.php b/inc/managers/LoginManager.php
index 308a51c..5a25159 100644
--- a/inc/managers/LoginManager.php
+++ b/inc/managers/LoginManager.php
@@ -18,7 +18,7 @@
 {
 	protected Features $siteFeatures;
 	protected ?MetaForm $metaForm = null;
-	protected CacheManager $cache;
+	protected Cache $cache;
 
 
 	protected array $forms =[];
@@ -43,7 +43,7 @@
 		$this->siteFeatures = Features::forSite();
 
 
-		$this->cache = CacheManager::for('login');
+		$this->cache = Cache::for('login');
 
 		// Initialize magic link support if enabled
 		if ($this->siteFeatures->has('magicLink')) {

--
Gitblit v1.10.0