diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Table.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/libraries/Table.php b/system/libraries/Table.php index 207ccc21d..cb2535ec8 100644 --- a/system/libraries/Table.php +++ b/system/libraries/Table.php @@ -367,6 +367,9 @@ class CI_Table { $out .= $this->template['table_close']; + // Clear table class properties before generating the table + $this->clear(); + return $out; } |