diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-02-09 10:43:26 +0100 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-02-09 10:43:26 +0100 |
commit | 55bb97e6196f2d7f50a2d3f24968a94de3f64c87 (patch) | |
tree | 2e235590a678cf802e970438cd733a16ed6a7040 /system/database/drivers/pdo/pdo_driver.php | |
parent | 62b8cae55d69775f09e3d64a6d35420c30241f98 (diff) |
Typo
Diffstat (limited to 'system/database/drivers/pdo/pdo_driver.php')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index 46b5e543d..9973bc007 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -221,7 +221,7 @@ class CI_DB_pdo_driver extends CI_DB { // Refer : http://php.net/manual/en/ref.pdo-mysql.connection.php if ($this->pdodriver == 'mysql' && is_php('5.3.6')) { - $this->options[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES $this->char_set COLLATE '.$this->dbcollat.'"; + $this->options[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES $this->char_set COLLATE '$this->dbcollat'"; } // Connecting... |