Added missing evaluation flags, for save not encoded json in the database

This commit is contained in:
Sven Baumann
2022-12-10 11:18:57 +01:00
parent 9814ed31ad
commit 44546e4952
3 changed files with 9 additions and 3 deletions

View File

@@ -428,7 +428,9 @@ $GLOBALS['TL_DCA']['tl_leaflet_map'] = [
'inputType' => 'textarea', 'inputType' => 'textarea',
'eval' => [ 'eval' => [
'tl_class' => 'clr lng', 'tl_class' => 'clr lng',
'allowHtml' => true, 'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;', 'style' => 'min-height: 40px;',
'rte' => 'ace|json', 'rte' => 'ace|json',
], ],

View File

@@ -340,7 +340,9 @@ $GLOBALS['TL_DCA']['tl_leaflet_marker'] = [
'inputType' => 'textarea', 'inputType' => 'textarea',
'eval' => [ 'eval' => [
'tl_class' => 'clr lng', 'tl_class' => 'clr lng',
'allowHtml' => true, 'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;', 'style' => 'min-height: 40px;',
'rte' => 'ace|json', 'rte' => 'ace|json',
], ],

View File

@@ -380,7 +380,9 @@ $GLOBALS['TL_DCA']['tl_leaflet_vector'] = [
'inputType' => 'textarea', 'inputType' => 'textarea',
'eval' => [ 'eval' => [
'tl_class' => 'clr lng', 'tl_class' => 'clr lng',
'allowHtml' => true, 'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;', 'style' => 'min-height: 40px;',
'rte' => 'ace|json', 'rte' => 'ace|json',
], ],