diff -urp ./taxonomy_image/taxonomy_image.module ./new_taxonomy_image/taxonomy_image.module
--- ./taxonomy_image/taxonomy_image.module	2009-04-16 13:33:11.000000000 +0000
+++ ./new_taxonomy_image/taxonomy_image.module	2009-06-15 22:51:45.000000000 +0000
@@ -749,6 +749,9 @@ function taxonomy_image_views_handlers()
       'views_handler_field_taxonomy_image' => array(
         'parent' => 'views_handler_field',
         ),
+      'views_handler_field_taxonomy_image_list' => array(
+        'parent' => 'views_handler_field_prerender_list',
+        ),
       ),
     );
 }
diff -urp ./taxonomy_image/taxonomy_image.views.inc ./new_taxonomy_image/taxonomy_image.views.inc
--- ./taxonomy_image/taxonomy_image.views.inc	2008-09-13 22:37:24.000000000 +0000
+++ ./new_taxonomy_image/taxonomy_image.views.inc	2009-06-15 22:51:13.000000000 +0000
@@ -37,6 +37,13 @@ function taxonomy_image_views_data() {
       'handler' => 'views_handler_field_taxonomy_image',
     ),
   );
+  $data['term_image']['tid_list'] = array(
+    'title' => t('All term images'),
+    'help' => t("Display all taxonomy terms associated with a node from specified vocabularies."),
+    'field' => array(
+      'handler' => 'views_handler_field_taxonomy_image_list',
+    ),
+  );
 
   return $data;
 }
Only in ./new_taxonomy_image: views_handler_field_taxonomy_image_list.inc
