Hi there
I tried changing the look of the taxonomy form in the node form by turning :
return form_select($title, $name . ($multiple ? '' : ']['), $value, $options, $description, $multiple ? 'size="'. min(12, count($options)) .'"' : 0, $multiple);
to:
return form_checkboxes($title, $name , $value, $options, $description, NULL , $multiple);
but could not save the data collected by the new form. Where did I get wrong ?