diff options
author | Mike Funk <mfunk@xulonpress.com> | 2012-03-19 14:51:28 +0100 |
---|---|---|
committer | Mike Funk <mfunk@xulonpress.com> | 2012-03-19 14:51:28 +0100 |
commit | 1ce0c424dd33d3b72ee61f5b812802ec0f073880 (patch) | |
tree | d5405ead3cdccbf115a601df0fb03b2d5e46a45e /system/database/DB_driver.php | |
parent | 994105cb45eba44b62bab41dfce76582b34c6913 (diff) | |
parent | 7eea3064af3be5dd0b526056211a510f90a40766 (diff) |
merged with latest develop.
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index a04a65eeb..bcff43392 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -165,7 +165,7 @@ class CI_DB_driver { } // Now we set the character set and that's all - return $this->db_set_charset($this->char_set, $this->dbcollat); + return $this->db_set_charset($this->char_set); } // -------------------------------------------------------------------- @@ -177,9 +177,9 @@ class CI_DB_driver { * @param string * @return bool */ - public function db_set_charset($charset, $collation = '') + public function db_set_charset($charset) { - if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset, $collation)) + if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset)) { log_message('error', 'Unable to set database connection charset: '.$charset); @@ -670,7 +670,7 @@ class CI_DB_driver { */ public function escape($str) { - if (is_string($str)) + if (is_string($str) OR method_exists($str, '__toString')) { $str = "'".$this->escape_str($str)."'"; } |