From 07e07e8776f1efbe875fe30ba206896b3ef55d1e Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Mon, 26 Oct 2020 21:35:09 -0400 Subject: [PATCH] Search ext: Exclude settings from being html-encoded in db --- CRM/Utils/API/HTMLInputCoder.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Utils/API/HTMLInputCoder.php b/CRM/Utils/API/HTMLInputCoder.php index 50634d22bc..ef0feed724 100644 --- a/CRM/Utils/API/HTMLInputCoder.php +++ b/CRM/Utils/API/HTMLInputCoder.php @@ -111,6 +111,8 @@ class CRM_Utils_API_HTMLInputCoder extends CRM_Utils_API_AbstractFieldCoder { 'footer', // SavedSearch entity 'api_params', + // SearchDisplay entity + 'settings', ]; $custom = CRM_Core_DAO::executeQuery('SELECT id FROM civicrm_custom_field WHERE html_type = "RichTextEditor"'); while ($custom->fetch()) { -- 2.25.1