Skip to content
Snippets Groups Projects
Commit d24f5538 authored by Raphaël Doursenaud's avatar Raphaël Doursenaud
Browse files

Fix: wrong parameters order

parent 406b2712
No related branches found
No related tags found
No related merge requests found
......@@ -1155,7 +1155,7 @@ class ExtraFields
else if (in_array($key_type,array('checkbox')))
{
$value_arr=GETPOST("options_".$key.$keyprefix);
$value_key=implode($value_arr,',');
$value_key=implode(',', $value_arr);
}
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.
Finish editing this message first!
Please register or to comment