? multiple_taxonomy.patch
Index: recipe.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/recipe/recipe.module,v
retrieving revision 1.75
diff -u -r1.75 recipe.module
--- recipe.module	8 Jul 2007 20:55:20 -0000	1.75
+++ recipe.module	20 Aug 2007 12:55:02 -0000
@@ -1,5 +1,5 @@
 <?php
-// $Id: recipe.module,v 1.75 2007/07/08 20:55:20 marble Exp $
+// $Id: recipe.module,v 1.72.2.3 2007/07/08 20:20:30 marble Exp $
 
 /**
  * @file
@@ -1458,8 +1458,11 @@
     foreach ($vocabs as $vocab) {
       $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, $vocab->vid);
       if (count($terms) > 0) {
-        $term = array_shift($terms);
-        $summary .= '<tr><th>'.$vocab->name.'</th><td>'.l($term->name, 'taxonomy/term/'.$term->tid).'</td></tr>';
+        $summary .= '<tr><th>'.$vocab->name.'</th><td>';
+	foreach ($terms as $term) {
+    	    $summary .= l($term->name, 'taxonomy/term/'.$term->tid).' ';
+	}
+	$summary .= '</td></tr>';
       }
     }
   }
