From a41f14f0dce447f23d4d04a06194a85f545a83b2 Mon Sep 17 00:00:00 2001 From: stonebuzz Date: Fri, 6 Oct 2023 13:26:37 +0200 Subject: [PATCH] fix(Change): handle HTML from searchoption --- src/Change.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Change.php b/src/Change.php index 5ea09ddeb72..5cfed03e016 100644 --- a/src/Change.php +++ b/src/Change.php @@ -510,7 +510,8 @@ public function rawSearchOptions() 'field' => 'impactcontent', 'name' => __('Analysis impact'), 'massiveaction' => false, - 'datatype' => 'text' + 'datatype' => 'text', + 'htmltext' => true ]; $tab[] = [ @@ -519,7 +520,8 @@ public function rawSearchOptions() 'field' => 'controlistcontent', 'name' => __('Control list'), 'massiveaction' => false, - 'datatype' => 'text' + 'datatype' => 'text', + 'htmltext' => true ]; $tab[] = [ @@ -528,7 +530,8 @@ public function rawSearchOptions() 'field' => 'rolloutplancontent', 'name' => __('Deployment plan'), 'massiveaction' => false, - 'datatype' => 'text' + 'datatype' => 'text', + 'htmltext' => true ]; $tab[] = [ @@ -537,7 +540,8 @@ public function rawSearchOptions() 'field' => 'backoutplancontent', 'name' => __('Backup plan'), 'massiveaction' => false, - 'datatype' => 'text' + 'datatype' => 'text', + 'htmltext' => true ]; $tab[] = [ @@ -546,7 +550,8 @@ public function rawSearchOptions() 'field' => 'checklistcontent', 'name' => __('Checklist'), 'massiveaction' => false, - 'datatype' => 'text' + 'datatype' => 'text', + 'htmltext' => true ]; $tab = array_merge($tab, Notepad::rawSearchOptionsToAdd());