diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index d2496bccc3d876afdf77bb895ec0f244b579bbe1..dafc267f2e64cec77ee192c81286624278970954 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,
   );