1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 10:05:56 +00:00

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;