From 38c518420300f60376a90d365f1b6912e2c117d8 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Mon, 29 Sep 2025 16:13:19 +0200 Subject: [PATCH] FIX Array problem in get_revue_terms return --- includes/utilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/utilities.php b/includes/utilities.php index 87224e9..0ba6ab3 100644 --- a/includes/utilities.php +++ b/includes/utilities.php @@ -81,7 +81,7 @@ function get_revue_terms($revueID, $taxonomy) $terms[] = $term->term_id; } } - + $uniquesTermsArray = array(); foreach (array_unique($terms) as $term) { $termObject = get_term($term, $taxonomy); $uniquesTermsArray[] = $termObject;