Index: install_profile_api/core/taxonomy.inc
===================================================================
--- install_profile_api/core/taxonomy.inc	(revision 2213)
+++ install_profile_api/core/taxonomy.inc	(working copy)
@@ -41,13 +41,15 @@
   // Default properties so you don't have to pass anything.
   $defaults = array(
     'name' => $vocab_name,
+    'tags' => 0,
     'multiple' => 0,
     'required' => 0,
     'hierarchy' => 0,
     'relations' => 0,
-    'module' => 'event',
+    'module' => 'taxonomy',
     'weight' => 0,
     'nodes' => $content_types,
+    'help' => '',
   );
 
   $vocabulary = array_merge($defaults, $properties);
@@ -83,8 +85,11 @@
   $term = array_merge($defaults, $properties);
   taxonomy_save_term($term);
   
-  $return = install_taxonomy_get_tid($name);
-  
+  // taxonomy_save_term() saves the tid to the array passed in
+  if (isset($term['tid']) && is_numeric($term['tid'])){
+    $return = $term['tid'];
+  }
+
   return $return;
 }
 
