Merge pull request #15424 from Tim-Otte/fix-15423

Fix for #15423
This commit is contained in:
Laurent Destailleur 2020-11-18 12:46:41 +01:00 committed by GitHub
commit ce173d7b39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2038,7 +2038,7 @@ class ExtraFields
$value_arr = GETPOST("options_".$key, 'alpha');
$value_key = price2num($value_arr);
} elseif (in_array($key_type, array('html'))) {
$value_key = GETPOST("options_".$key, 'alpha');
$value_key = GETPOST("options_".$key, 'restricthtml');
} elseif (in_array($key_type, array('text'))) {
$value_key = GETPOST("options_".$key, 'alphanohtml');
} else {