commit | 02b3a5b49ffc4226c1980e8186de43f9ead29a9a | [log] [tgz] |
---|---|---|
author | Greg Aker <greg.aker@ellislab.com> | Tue Feb 01 01:29:21 2011 -0600 |
committer | Greg Aker <greg.aker@ellislab.com> | Tue Feb 01 01:29:21 2011 -0600 |
tree | a525d220b9f959c5f62b47219ba736d2f61f13f7 | |
parent | 0ecc06220733d180c181eb0133b10e66d509658c [diff] |
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; }