From 6936efd3874ea364fdd90fa97c612c67b875eb0c Mon Sep 17 00:00:00 2001 From: Ivan Nieto Vivanco Date: Sun, 12 Feb 2023 16:27:37 -0600 Subject: [PATCH] Remove e() function from customfield format input --- app/Http/Controllers/CustomFieldsController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/CustomFieldsController.php b/app/Http/Controllers/CustomFieldsController.php index 4eb31450e..e29cbaa3f 100644 --- a/app/Http/Controllers/CustomFieldsController.php +++ b/app/Http/Controllers/CustomFieldsController.php @@ -109,9 +109,9 @@ class CustomFieldsController extends Controller if ($request->filled('custom_format')) { - $field->format = e($request->get('custom_format')); + $field->format = $request->get('custom_format'); } else { - $field->format = e($request->get('format')); + $field->format = $request->get('format'); } if ($field->save()) {