use mysqli_set_charset() to set MYSQL_CHARSET

This commit is contained in:
Andrew Dolgov 2017-08-09 08:05:52 +03:00
parent 20d2195f13
commit ab8daa0389

View file

@ -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;