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

Fix: Update select with list

parent c1b21d14
Branches
Tags
No related merge requests found
......@@ -66,7 +66,9 @@ if((($type == 'select') || ($type == 'checkbox') ||(($type == 'radio'))) && is_a
$param_chain .= $key.','.$value."\n";
}
}
}elseif ($type== 'sellist') {
}
elseif ($type== 'sellist')
{
$paramlist=array_keys($param['options']);
$param_chain = $paramlist[0];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment