Index: tapir.module
===================================================================
--- tapir.module	(revision 2016)
+++ tapir.module	(working copy)
@@ -157,6 +157,12 @@ function tapir_edit_form($table_id, $fie
     );
   }
 
+  $form[$table_id . '_footer'] = array(
+    '#title' => t('Enable table footer'),
+    '#type' => 'checkbox',
+    '#default_value' => variable_get($table_id . '_footer', 1),
+  );
+
   return system_settings_form($form);
 }
 
@@ -302,7 +308,7 @@ function tapir_get_table($table_id, &$ar
     }
   }
 
-  if (isset($data['#footer'])) {
+  if (variable_get($table_id . '_footer', 1) && isset($data['#footer'])) {
     $rows[] = $data['#footer'];
   }
 
