diff options
author | Andrey Andreev <narf@devilix.net> | 2016-10-28 13:42:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-28 13:42:49 +0200 |
commit | 1c535c492e59965a73b606e93a3d3b4fc1212a3d (patch) | |
tree | 84457221017ab3ba149871a32c417276b9ae5232 /system/libraries | |
parent | 015c9a03447a7367ab1e5a2357ad7aac2b2e581f (diff) | |
parent | 6b33b232aa21f4db38ead696321287768751cfd1 (diff) |
Merge pull request #4826 from gxgpet/develop2
Make CI_Table::clear() reset captions
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Table.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/libraries/Table.php b/system/libraries/Table.php index f2fa434d9..2f1b3b414 100644 --- a/system/libraries/Table.php +++ b/system/libraries/Table.php @@ -427,6 +427,7 @@ class CI_Table { $this->rows = array(); $this->heading = array(); $this->auto_heading = TRUE; + $this->caption = NULL; return $this; } |