From d58a0aa5336ff5fdae29c2caac9daf23727c1900 Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Tue, 15 Aug 2006 05:50:48 +0000 Subject: [PATCH] #77402 by Zacker, fix the node type checkboxes on vocabulary editing. --- modules/taxonomy/taxonomy.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index d2496bccc3d..dafc267f2e6 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, );