From b38f03c0e7218762d90fa5092696b127f24f36db Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 25 Jan 2026 07:07:26 +0000
Subject: [PATCH] =Some logical flaws in Queue.php, Queue.js, ContentExecutor.php, UploadExecutor.php - particularly with timeline ordering, frontend queue updates, etc
---
inc/rest/routes/FormRoutes.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/inc/rest/routes/FormRoutes.php b/inc/rest/routes/FormRoutes.php
index c5c0d36..c2cd228 100644
--- a/inc/rest/routes/FormRoutes.php
+++ b/inc/rest/routes/FormRoutes.php
@@ -2,7 +2,7 @@
namespace JVBase\rest\routes;
use JVBase\rest\RestRouteManager;
-use JVBase\managers\CacheManager;
+use JVBase\managers\Cache;
use JVBase\meta\MetaManager;
use JVBase\managers\CloudflareTurnstile;
use JVBase\blocks\FormBlock;
@@ -23,7 +23,7 @@
*/
class FormRoutes extends RestRouteManager
{
- protected CacheManager $cache;
+ protected Cache $cache;
protected FormBlock $form_block;
protected CloudflareTurnstile|null $turnstile;
@@ -31,7 +31,7 @@
{
parent::__construct();
$this->action = 'form-';
- $this->cache = CacheManager::for('forms', HOUR_IN_SECONDS);
+ $this->cache = Cache::for('forms', HOUR_IN_SECONDS);
// Add query vars
--
Gitblit v1.10.0