Index: contrib/image_attach/image_attach.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/contrib/image_attach/image_attach.module,v
retrieving revision 1.48
diff -u -p -r1.48 image_attach.module
--- contrib/image_attach/image_attach.module	20 Jun 2009 18:28:42 -0000	1.48
+++ contrib/image_attach/image_attach.module	2 Aug 2009 23:31:02 -0000
@@ -422,5 +422,17 @@ function theme_image_attach_body($node) 
   }
 }
 
-
+/**
+ * Implementation of hook_content_extra_fields().
+ */
+function image_attach_content_extra_fields($type_name) {
+  if (variable_get('image_attach_' . $type_name, 0)) {
+    $extra['image_attach'] = array(
+      'label' => t('Image Attach'),
+      'description' => t('Image Attach settings.'),
+      'weight' => 0,
+    );
+    return $extra;
+  }
+}
 
