summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysql
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-03-12 14:35:40 +0100
committerAndrey Andreev <narf@bofh.bg>2012-03-12 14:35:40 +0100
commitb3442a165a091c552a3331ece94297d5fe316fee (patch)
tree460d69b82dcc357b0b815a3d66dd3f482c20e532 /system/database/drivers/mysql
parentf6a4114e57a305d0b2fd24a23f9e643290e71eec (diff)
Add missing semicolons
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r--system/database/drivers/mysql/mysql_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php
index 0ca8413da..071ce4327 100644
--- a/system/database/drivers/mysql/mysql_driver.php
+++ b/system/database/drivers/mysql/mysql_driver.php
@@ -149,7 +149,7 @@ class CI_DB_mysql_driver extends CI_DB {
*/
protected function _db_set_charset($charset, $collation)
{
- return @mysql_set_charset($charset, $this->conn_id)
+ return @mysql_set_charset($charset, $this->conn_id);
}
// --------------------------------------------------------------------