Remove e() function from customfield format input
This commit is contained in:
parent
b2f1ca95df
commit
53e449899b
1 changed files with 2 additions and 2 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue