FIX #17649
This commit is contained in:
parent
92dc0d28ce
commit
0bbe2210f2
@ -2215,7 +2215,11 @@ class ExtraFields
|
|||||||
continue; // Value was not provided, we should not set it.
|
continue; // Value was not provided, we should not set it.
|
||||||
}
|
}
|
||||||
$value_arr = GETPOST($keysuffix."options_".$key.$keyprefix);
|
$value_arr = GETPOST($keysuffix."options_".$key.$keyprefix);
|
||||||
$value_key = price2num($value_arr);
|
if ($keysuffix != 'search_') { // If value is for a search, we must keep complex string like '>100 <=150'
|
||||||
|
$value_key = price2num($value_arr);
|
||||||
|
} else {
|
||||||
|
$value_key = $value_arr;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!GETPOSTISSET($keysuffix."options_".$key.$keyprefix)) {
|
if (!GETPOSTISSET($keysuffix."options_".$key.$keyprefix)) {
|
||||||
continue; // Value was not provided, we should not set it.
|
continue; // Value was not provided, we should not set it.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user