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

diff --git a/inc/managers/SEO/TemplateResolver.php b/inc/managers/SEO/TemplateResolver.php
index 1090f9c..8b5c57d 100644
--- a/inc/managers/SEO/TemplateResolver.php
+++ b/inc/managers/SEO/TemplateResolver.php
@@ -607,8 +607,8 @@
 		} elseif ($this->objectType === 'term' && $this->objectId) {
 			$term = get_term($this->objectId);
 			if ($term && !is_wp_error($term)) {
-				$this->context['term_name'] = $term->name;
-				$this->context['term_description'] = $term->description;
+				$this->context['term_name'] = html_entity_decode($term->name);
+				$this->context['term_description'] = wptexturize($term->description);
 				$this->context['taxonomy'] = $term->taxonomy;
 			}
 		} elseif ($this->objectType === 'user' && $this->objectId) {

--
Gitblit v1.10.0