Add missing semicolons
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php
index 0ca8413..071ce43 100644
--- a/system/database/drivers/mysql/mysql_driver.php
+++ b/system/database/drivers/mysql/mysql_driver.php
@@ -149,7 +149,7 @@
*/
protected function _db_set_charset($charset, $collation)
{
- return @mysql_set_charset($charset, $this->conn_id)
+ return @mysql_set_charset($charset, $this->conn_id);
}
// --------------------------------------------------------------------
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index a965e61..e84b834 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -149,7 +149,7 @@
*/
protected function _db_set_charset($charset, $collation)
{
- return @mysqli_set_charset($this->conn_id, $charset)
+ return @mysqli_set_charset($this->conn_id, $charset);
}
// --------------------------------------------------------------------