Skip to content
Snippets Groups Projects
Commit cb8227f0 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix syntax error

parent 2f02919c
No related branches found
No related tags found
No related merge requests found
...@@ -1552,7 +1552,7 @@ class ExtraFields ...@@ -1552,7 +1552,7 @@ class ExtraFields
{ {
$value_arr=GETPOST($keysuffix."options_".$key.$keyprefix); $value_arr=GETPOST($keysuffix."options_".$key.$keyprefix);
// Make sure we get an array even if there's only one checkbox // Make sure we get an array even if there's only one checkbox
$value_arr=(array)$value_arr $value_arr=(array) $value_arr;
$value_key=implode(',', $value_arr); $value_key=implode(',', $value_arr);
} }
else if (in_array($key_type,array('price','double'))) else if (in_array($key_type,array('price','double')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment