Merge pull request #4863 from gxgpet/develop4

Add missing method chaining support to CI_Table::set_caption()
diff --git a/system/libraries/Table.php b/system/libraries/Table.php
index 3bce294..f2fa434 100644
--- a/system/libraries/Table.php
+++ b/system/libraries/Table.php
@@ -277,6 +277,7 @@
 	public function set_caption($caption)
 	{
 		$this->caption = $caption;
+		return $this;
 	}
 
 	// --------------------------------------------------------------------