From ff7c0b6db3c5ff2aca3e9f8c122604b11a8d84bc Mon Sep 17 00:00:00 2001 From: N0W0RK Date: Sat, 15 Jul 2023 16:13:47 +0200 Subject: [PATCH] Add support for HTML Tags within form popovers (#1192) Fixes showing `
` in some places --- Core/Frameworks/Formal/Element/Text.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/Frameworks/Formal/Element/Text.php b/Core/Frameworks/Formal/Element/Text.php index 0690ef7..713f0d6 100644 --- a/Core/Frameworks/Formal/Element/Text.php +++ b/Core/Frameworks/Formal/Element/Text.php @@ -84,6 +84,7 @@ class Text extends \Formal\Element { $popover = " title=\"" . htmlspecialchars($aPopover["title"]) . "\" "; $popover .= " data-content=\"" . htmlspecialchars($aPopover["content"]) . "\" "; + $popover .= " data-html=\"true\""; } $sHtml = <<