From 6fc720fd9ff06ceb2b1db89bb53c7af3d8a27dd2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 25 Nov 2008 06:39:13 +0100 Subject: pgsql: force datestyle to european for PHP strtotime() compatibility --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 4d3e8c7b6..0adf9c5ea 100644 --- a/functions.php +++ b/functions.php @@ -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); -- cgit v1.2.3