mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-22 15:41:29 +00:00
new config option: MYSQL_CHARSET
This commit is contained in:
@@ -66,8 +66,10 @@
|
||||
pg_query("set client_encoding = 'utf-8'");
|
||||
pg_set_client_encoding("UNICODE");
|
||||
} else {
|
||||
// db_query($link, "SET NAMES utf8");
|
||||
// db_query($link, "SET CHARACTER SET utf8");
|
||||
if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
|
||||
db_query($link, "SET NAMES " . MYSQL_CHARSET);
|
||||
db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
|
||||
}
|
||||
}
|
||||
|
||||
$last_purge = 0;
|
||||
|
||||
Reference in New Issue
Block a user