From 045d0ab83ad08e856adcf208080d008515a9ec9f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 25 Nov 2008 11:23:39 +0100 Subject: pgsql: force datestyle to ISO, european for PHP strtotime() compatibility --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 0adf9c5ea..89752a588 100644 --- a/functions.php +++ b/functions.php @@ -5853,7 +5853,7 @@ if (DB_TYPE == "pgsql") { pg_query($link, "set client_encoding = 'UTF-8'"); pg_set_client_encoding("UNICODE"); - pg_query($link, "set datestyle = 'european'"); + pg_query($link, "set datestyle = 'ISO, european'"); } else { if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) { db_query($link, "SET NAMES " . MYSQL_CHARSET); -- cgit v1.2.3