Update extrafields.class.php

This commit is contained in:
Laurent Destailleur 2020-11-18 12:45:37 +01:00 committed by GitHub
parent 4a1f61d759
commit a5a7197506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2025,7 +2025,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, 'none');
$value_key = GETPOST("options_".$key, 'restricthtml');
} elseif (in_array($key_type, array('text'))) {
$value_key = GETPOST("options_".$key, 'alphanohtml');
} else {