use mysqli_set_charset() to set MYSQL_CHARSET
This commit is contained in:
parent
20d2195f13
commit
ab8daa0389
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class Db_Mysqli implements IDb {
|
|||
$this->query("SET time_zone = '+0:0'");
|
||||
|
||||
if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
|
||||
$this->query("SET NAMES " . MYSQL_CHARSET);
|
||||
mysqli_set_charset($this->link, MYSQL_CHARSET);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue