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

---
 templates/dashboard/sections/news.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/templates/dashboard/sections/news.php b/templates/dashboard/sections/news.php
index ae4d46f..242f4c5 100644
--- a/templates/dashboard/sections/news.php
+++ b/templates/dashboard/sections/news.php
@@ -1,6 +1,6 @@
 <?php
 
-use JVBase\managers\CacheManager;
+use JVBase\managers\Cache;
 
 if (!defined('ABSPATH')) {
     exit; // Exit if accessed directly
@@ -9,7 +9,7 @@
     wp_redirect(get_home_url(null, '/dash'));
     exit;
 }
-$cache = CacheManager::for('news', 3600);
+$cache = Cache::for('news', 3600);
 $check = $cache->get('type-options');
 
 if ($check) {
@@ -24,7 +24,7 @@
         foreach ($terms as $term) {
             $typeOptions[] = [
                 'id'    => $term->term_id,
-                'name'    => $term->name,
+                'name'    => html_entity_decode($term->name),
                 'count'    => $term->count,
             ];
         }

--
Gitblit v1.10.0