- #482774 Update breaks when CCK is disabled.
- #479994 by quicksketch: fix "add more' button with devel.module's query logging (multigroup).
- #499696 by DeFr - Noderefernce / Userreference: fix Views mode when the view has exposed filters.
+- #498924 - #multiple FAPI attribute is used for a radios and checkboxes in content export forms.
Other changes:
- #421116 Move content.js to js/content.admin.js for consistency with location of new js files.
$form['type_name'] = array(
'#title' => t('Types'),
'#type' => 'radios',
- '#multiple' => FALSE,
'#options' => $types,
'#description' => t('Select the content type to export.'),
);
}
$form['fields'] = array(
'#type' => 'checkboxes',
- '#multiple' => TRUE,
'#options' => $fields_options,
'#default_value' => array_keys($fields_options),
);
if ($groups) {
$form['groups'] = array(
'#type' => 'checkboxes',
- '#multiple' => TRUE,
'#options' => $groups_options,
'#default_value' => array_keys($groups_options),
);