pgsql: force datestyle to european for PHP strtotime() compatibility

master
Andrew Dolgov 16 years ago
parent 31365729dc
commit 6fc720fd9f

@ -5851,8 +5851,9 @@
function init_connection($link) {
if (DB_TYPE == "pgsql") {
pg_query("set client_encoding = 'UTF-8'");
pg_query($link, "set client_encoding = 'UTF-8'");
pg_set_client_encoding("UNICODE");
pg_query($link, "set datestyle = 'european'");
} else {
if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
db_query($link, "SET NAMES " . MYSQL_CHARSET);

Loading…
Cancel
Save