Index: image.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.install,v
retrieving revision 1.23
diff -u -p -r1.23 image.install
--- image.install	8 Mar 2009 21:40:38 -0000	1.23
+++ image.install	11 May 2009 22:02:21 -0000
@@ -43,6 +43,8 @@ function image_schema() {
  */
 function image_install() {
   drupal_install_schema('image');
+  // Set reasonable default node options (not promoted to front page).
+  variable_set('node_options_image', array('status'));
 }
 
 /**
@@ -321,3 +323,12 @@ function image_update_6101() {
   return $ret;
 }
 
+/**
+ * Set reasonable default node options (not promoted to front page).
+ */
+function image_update_6102() {
+  $ret = array();
+  variable_set('node_options_image', variable_get('node_options_image', array('status')));
+  return $ret;
+}
+
Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.303
diff -u -p -r1.303 image.module
--- image.module	18 Apr 2009 01:43:22 -0000	1.303
+++ image.module	11 May 2009 21:54:37 -0000
@@ -72,7 +72,7 @@ function image_node_info() {
     'image' => array(
       'name' => t('Image'),
       'module' => 'image',
-      'description' => t('An image (with thumbnail). This is ideal for publishing photographs or screenshots.'),
+      'description' => t('An image (with thumbnail). Ideal for publishing photographs or screenshots.'),
     )
   );
 }
