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/meta/MetaFormOld.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/meta/MetaFormOld.php b/inc/meta/MetaFormOld.php
index 7682a19..22851a5 100644
--- a/inc/meta/MetaFormOld.php
+++ b/inc/meta/MetaFormOld.php
@@ -525,7 +525,7 @@
 					$term = get_term($termId, $taxonomy);
 					if ($term && !is_wp_error($term)) {
 						$processedSelected[$term->term_id] = [
-							'name' => $term->name,
+							'name' => html_entity_decode($term->name),
 							'path' => TaxonomySelector::getTermPath($term)
 						];
 					}
@@ -909,7 +909,7 @@
                                         $term = get_term($item_id, $taxonomy);
                                         if (!is_wp_error($term) && $term) {
                                             $item_type = 'term';
-                                            $item_title = $term->name;
+                                            $item_title = html_entity_decode($term->name);
                                             $item_object = $term->taxonomy;
                                             break;
                                         }

--
Gitblit v1.10.0