From 88d9e0e2b7997eb0c96dc737082c91b4e3f7ca6e Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 17 Jun 2026 15:10:37 +0000
Subject: [PATCH] =Fixed for single image upload fields populating the image meta. Need to check galleries now.

---
 inc/admin/ContentTaxonomy.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/admin/ContentTaxonomy.php b/inc/admin/ContentTaxonomy.php
index 399d3ac..0863a1e 100644
--- a/inc/admin/ContentTaxonomy.php
+++ b/inc/admin/ContentTaxonomy.php
@@ -17,7 +17,7 @@
 {
     public function __construct()
     {
-		if (empty(Registrar::getFeatured('is_content', 'term'))){
+		if (empty(Registrar::withFeature('is_content', 'term'))){
 			return;
 		}
         add_filter(BASE.'handle_bulk_operation', [ $this, 'processOperation' ], 10, 3);
@@ -124,7 +124,7 @@
                     </thead>
                     <tbody>
                     <?php
-					$taxonomies = Registrar::getFeatured('is_content', 'term');
+					$taxonomies = Registrar::withFeature('is_content', 'term');
 					foreach ($taxonomies as $slug):
 						$registrar = Registrar::getInstance($slug);
                         $taxonomy = BASE . $slug;

--
Gitblit v1.10.0