diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-15 05:50:48 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-15 05:50:48 +0000 |
commit | d58a0aa5336ff5fdae29c2caac9daf23727c1900 (patch) | |
tree | 7479ab98c0c46cba960d202e8cc97e0b246ac07e | |
parent | 0aee20e61b0fe78ba6f6d9d1853bc79b25abdba7 (diff) | |
download | brdo-d58a0aa5336ff5fdae29c2caac9daf23727c1900.tar.gz brdo-d58a0aa5336ff5fdae29c2caac9daf23727c1900.tar.bz2 |
#77402 by Zacker, fix the node type checkboxes on vocabulary editing.
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index d2496bccc..dafc267f2 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -218,7 +218,7 @@ function taxonomy_form_vocabulary($edit = array()) { $form['nodes'] = array('#type' => 'checkboxes', '#title' => t('Types'), '#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.'), '#required' => TRUE, ); |