From c76f074a050f97df91dbec87fa425bb22bee1234 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 17 Sep 2024 16:12:35 +0300 Subject: [PATCH] - fixed wp_kses allowed HTML tags; --- includes/class-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-functions.php b/includes/class-functions.php index 6c0aff80..c4811570 100644 --- a/includes/class-functions.php +++ b/includes/class-functions.php @@ -709,7 +709,7 @@ if ( ! class_exists( 'UM_Functions' ) ) { ), ); - $allowed_html = array_merge( $global_allowed, $allowed_html ); + $allowed_html = array_merge_recursive( $global_allowed, $allowed_html ); $allowed_html = array_map( '_wp_add_global_attributes', $allowed_html ); /**