From c38dbc2d8341890d597f3743643c577fccb01973 Mon Sep 17 00:00:00 2001 From: loviuz Date: Tue, 17 Jan 2023 14:54:27 +0100 Subject: [PATCH] Miglioria su gestione campi personalizzati per pieno supporto html e js --- modules/custom_fields/edit.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/custom_fields/edit.php b/modules/custom_fields/edit.php index b71648bb7..115ce2239 100755 --- a/modules/custom_fields/edit.php +++ b/modules/custom_fields/edit.php @@ -57,7 +57,14 @@ include_once __DIR__.'/../../core.php';
- {[ "type": "textarea", "label": "", "name": "content", "required": 1, "value": "$content$" ]} + 'textarea', + 'label' => tr('Contenuto'), + 'name' => 'content', + 'value' => $record['content'], + ]); + ?>