#77402 by Zacker, fix the node type checkboxes on vocabulary editing.
parent
0aee20e61b
commit
d58a0aa533
modules/taxonomy
|
@ -218,7 +218,7 @@ function taxonomy_form_vocabulary($edit = array()) {
|
||||||
$form['nodes'] = array('#type' => 'checkboxes',
|
$form['nodes'] = array('#type' => 'checkboxes',
|
||||||
'#title' => t('Types'),
|
'#title' => t('Types'),
|
||||||
'#default_value' => $edit['nodes'],
|
'#default_value' => $edit['nodes'],
|
||||||
'#options' => node_get_types(),
|
'#options' => node_get_types('names'),
|
||||||
'#description' => t('A list of node types you want to associate with this vocabulary.'),
|
'#description' => t('A list of node types you want to associate with this vocabulary.'),
|
||||||
'#required' => TRUE,
|
'#required' => TRUE,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue