From 5861efdbe900ccd35309913af0c0a5f3d4cdc1a8 Mon Sep 17 00:00:00 2001 From: slawkens Date: Thu, 6 Nov 2025 11:48:42 +0100 Subject: [PATCH] Settings: escapeHtml in values (support for html code) --- system/src/Settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/src/Settings.php b/system/src/Settings.php index ec4a83fa..fea52d04 100644 --- a/system/src/Settings.php +++ b/system/src/Settings.php @@ -248,7 +248,7 @@ class Settings implements \ArrayAccess echo '
'; } - echo ''; + echo ''; if ($setting['type'] === 'password') { echo '
'; @@ -266,7 +266,7 @@ class Settings implements \ArrayAccess if ($rows < 2) { $rows = 2; // always min 2 rows for textarea } - echo ''; + echo ''; } else if ($setting['type'] === 'options') {