Index: tapir.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/tapir/tapir.module,v
retrieving revision 1.9
diff -u -r1.9 tapir.module
--- tapir.module	11 Oct 2008 16:07:55 -0000	1.9
+++ tapir.module	11 Mar 2009 23:36:14 -0000
@@ -309,7 +309,9 @@
   }
 
   if (isset($data['#footer']) && variable_get($table_id . '_footer', TRUE)) {
-    $rows[] = $data['#footer'];
+    foreach ($data['#footer'] as $item) {
+      $rows[] = $item;
+    }
   }
 
   $output = theme('table', $header, $rows, $attributes);

