Fixed a bug where the table class would not clear table data after calling generate().
diff --git a/system/libraries/Table.php b/system/libraries/Table.php
index 207ccc2..cb2535e 100644
--- a/system/libraries/Table.php
+++ b/system/libraries/Table.php
@@ -367,6 +367,9 @@
 
 		$out .= $this->template['table_close'];
 
+		// Clear table class properties before generating the table
+		$this->clear();
+
 		return $out;
 	}