diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-01 18:34:09 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-01 18:34:09 +0100 |
commit | eabc5ec81209ec83393222f2964098aedf6dbc7a (patch) | |
tree | 1834fa8ca7b788d27cf0e916f9578d8bb8f1f999 /system/database/DB_driver.php | |
parent | a0da0b28bdb0ff73d5c0d9f8780ab0f6d74f39e3 (diff) | |
parent | e3a68042c086acfc98ae273adbd8527af0c6ab8b (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebird
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 09273baf0..7da4b1ac8 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -185,20 +185,19 @@ class CI_DB_driver { /** * Set client character set * - * @access public * @param string * @param string - * @return resource + * @return bool */ - function db_set_charset($charset, $collation) + public function db_set_charset($charset, $collation = '') { - if ( ! $this->_db_set_charset($this->char_set, $this->dbcollat)) + if (method_exists($this, '_db_set_charset') && ! $this->_db_set_charset($charset, $collation)) { - log_message('error', 'Unable to set database connection charset: '.$this->char_set); + log_message('error', 'Unable to set database connection charset: '.$charset); if ($this->db_debug) { - $this->display_error('db_unable_to_set_charset', $this->char_set); + $this->display_error('db_unable_to_set_charset', $charset); } return FALSE; |