Skip to content
Snippets Groups Projects
Commit b82ff3f7 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: missing parameter

parent f66236af
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ if (! empty($field) && ! empty($element) && ! empty($table_element) && ! empty($
$ext_element = GETPOST('ext_element','alpha',2);
$field = substr($field, 8); // remove prefix val_
$type = GETPOST('type','alpha',2);
$value = ($type == 'ckeditor' ? GETPOST('value',2) : GETPOST('value','alpha',2));
$value = ($type == 'ckeditor' ? GETPOST('value','',2) : GETPOST('value','alpha',2));
$savemethod = GETPOST('savemethod','alpha',2);
$savemethodname = (! empty($savemethod) ? $savemethod : 'setValueFrom');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment