From d37e2bb322e26063bae99fb378f89dab84a6c862 Mon Sep 17 00:00:00 2001 From: Justin Frydman Date: Mon, 24 Jun 2024 10:45:25 -0600 Subject: [PATCH] Fix allowed tags --- src/Uplink/Notice/Notice_Controller.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Uplink/Notice/Notice_Controller.php b/src/Uplink/Notice/Notice_Controller.php index 65b47cb7..9bca9ece 100644 --- a/src/Uplink/Notice/Notice_Controller.php +++ b/src/Uplink/Notice/Notice_Controller.php @@ -41,10 +41,10 @@ public function render( array $args = [] ): void { 'classes' => $this->classes( $classes ), 'allowed_tags' => [ 'a' => [ - 'href', - 'title', - 'target', - 'rel', + 'href' => [], + 'title' => [], + 'target' => [], + 'rel' => [], ], 'br' => [], 'code' => [],