? image_display_title_option2.patch
Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.316
diff -u -p -r1.316 image.module
--- image.module	26 Aug 2009 14:42:04 -0000	1.316
+++ image.module	26 Aug 2009 17:57:26 -0000
@@ -687,7 +687,9 @@ function theme_image_body($node, $size) 
  * Theme an img tag for displaying the image.
  */
 function theme_image_display($node, $label, $url, $attributes) {
-  return theme('image', $url, $node->title, $node->title, $attributes, FALSE);
+  $title = isset($attributes['title']) ? $attributes['title'] : $node->title;
+  $alt = isset($attributes['alt']) ? $attributes['alt'] : $node->title;
+  return theme('image', $url, $alt, $title, $attributes, FALSE);
 }
 
 /**
