summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_db_mssql.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-08 19:53:04 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-08 19:53:04 +0200
commit66407a75d1eced92d0bd725caa028f54a3b345be (patch)
tree40815913d7fe247301e01ec85e6f8df11ca42f79 /program/lib/Roundcube/rcube_db_mssql.php
parentb68e2355d7dcc40de404a93b9d39add2a6e45510 (diff)
Fix date format issues on MS SQL Server (#1488918)
Diffstat (limited to 'program/lib/Roundcube/rcube_db_mssql.php')
-rw-r--r--program/lib/Roundcube/rcube_db_mssql.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_db_mssql.php b/program/lib/Roundcube/rcube_db_mssql.php
index 71317078c..4c005b0d0 100644
--- a/program/lib/Roundcube/rcube_db_mssql.php
+++ b/program/lib/Roundcube/rcube_db_mssql.php
@@ -46,6 +46,18 @@ class rcube_db_mssql extends rcube_db
}
/**
+ * Driver-specific configuration of database connection
+ *
+ * @param array $dsn DSN for DB connections
+ * @param PDO $dbh Connection handler
+ */
+ protected function conn_configure($dsn, $dbh)
+ {
+ // Set date format in case of non-default language (#1488918)
+ $this->query("SET DATEFORMAT ymd");
+ }
+
+ /**
* Return SQL function for current time and date
*
* @param int $interval Optional interval (in seconds) to add/subtract