#41484 by nickl, flk, and budda. Don't wrap the category selection in a fieldset if there is only one vocabulary.

5.x
Neil Drumm 2006-09-11 08:18:24 +00:00
parent 428a86e60f
commit 1081f92732
1 changed files with 15 additions and 2 deletions

View File

@ -672,8 +672,21 @@ function taxonomy_form_alter($form_id, &$form) {
$form['taxonomy'][$vocabulary->vid]['#required'] = $vocabulary->required;
}
}
if (isset($form['taxonomy'])) {
$form['taxonomy'] += array('#type' => 'fieldset', '#title' => t('Categories'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#weight' => -3);
if (is_array($form['taxonomy']) && !empty($form['taxonomy'])) {
if (count($form['taxonomy']) > 1) { // Add fieldset only if form has more than 1 element.
$form['taxonomy'] += array(
'#type' => 'fieldset',
'#title' => t('Categories'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#tree' => TRUE,
'#weight' => -3,
);
}
else {
$form['taxonomy'] = array_shift($form['taxonomy']);
$form['taxonomy']['#weight'] = -3;
}
}
}
}