Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.209.2.46
diff -u -p -u -r1.209.2.46 image.module
--- image.module	30 Aug 2007 19:36:09 -0000	1.209.2.46
+++ image.module	4 Sep 2007 14:50:24 -0000
@@ -322,6 +322,22 @@ function image_operations_rebuild($nids)
 }
 
 /**
+ * Implementation of hook_nodeapi().
+ */
+function image_nodeapi(&$node, $op, $teaser, $page) {
+  if ($node->type == 'image') {
+    switch($op) {
+      case 'rss item':
+        // Insert the image into the RSS feed.
+        $img = l(image_display($images[0], IMAGE_THUMBNAIL), 'node/'. $images[0]->nid, array(), NULL, NULL, FALSE, TRUE);
+        $node->teaser = $img . $node->teaser;
+        $node->body .= $img . $node->body;
+        return;
+    }
+  }
+}
+
+/**
  * Implementation of hook_prepare().
  */
 function image_prepare(&$node, $field_name) {

