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/helpers/crud.php | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/inc/helpers/crud.php b/inc/helpers/crud.php
index 3966261..7f4e8c8 100644
--- a/inc/helpers/crud.php
+++ b/inc/helpers/crud.php
@@ -4,6 +4,8 @@
exit;
}
+use JVBase\managers\Cache;
+
/**
* Outputs the blocks of a CRUD management in backend
* Mainly used in news.php so far
@@ -103,7 +105,7 @@
</button>
</div>
</div>',
- jvbIcon('close', ['title'=>'Cancel'])
+ jvbIcon('x', ['title'=>'Cancel'])
);
}
$out .= '</div>';
@@ -166,7 +168,7 @@
*/
function jvbRenderDateFilter(string $content):string
{
- $cache = new JVBase\Managers\CacheManager('date_filter');
+ $cache = Cache::for('date_filter')->connect('post', true);
$check = $cache->get($content);
if ($check) {
return $check;
--
Gitblit v1.10.0