Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.184
diff -u -r1.184 image.module
--- image.module	23 Feb 2006 04:18:48 -0000	1.184
+++ image.module	16 Mar 2006 06:01:51 -0000
@@ -855,7 +855,14 @@
     // Check to see if an image gallery vocabulary exists
     $vid = db_result(db_query("SELECT vid FROM {vocabulary} WHERE module='%s'", 'image'));
     if (!$vid) {
-      $vocabulary = array('name' => t('Image Galleries'), 'multiple' => '0', 'required' => '0', 'hierarchy' => '1', 'relations' => '0', 'module' => 'image', 'nodes' => array('image'));
+      $vocabulary = array(
+        'name' => t('Image Galleries'),
+        'multiple' => '0',
+        'required' => '0',
+        'hierarchy' => '1',
+        'relations' => '0',
+        'module' => 'image',
+        'nodes' => array('image' => 1));
       taxonomy_save_vocabulary($vocabulary);
       $vid = $vocabulary['vid'];
     }
