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

mysql: set connection charset to utf-8

This commit is contained in:
Andrew Dolgov
2007-08-17 17:02:15 +01:00
parent 981e8107ca
commit 70dcff6b3d
6 changed files with 19 additions and 1 deletions

View File

@@ -13,6 +13,9 @@
if (DB_TYPE == "pgsql") {
pg_query($link, "set client_encoding = 'utf-8'");
pg_set_client_encoding("UNICODE");
} else {
db_query($link, "SET NAMES utf8");
db_query($link, "SET CHARACTER SET utf8");
}
login_sequence($link);