diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-10-07 11:19:21 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-10-07 11:19:21 +0200 |
commit | 120db629b0645033fd6a477b9f96cc8dad589213 (patch) | |
tree | 271a61211ac0c40d702ea50e22c209a819cf6fd1 /program/lib/Roundcube/rcube_db_sqlsrv.php | |
parent | aceb0149b8f7f6c57e8dd6ba6f69aa0d6cacc6bc (diff) |
Execute connection config queries on db handle direclty
Diffstat (limited to 'program/lib/Roundcube/rcube_db_sqlsrv.php')
-rw-r--r-- | program/lib/Roundcube/rcube_db_sqlsrv.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db_sqlsrv.php b/program/lib/Roundcube/rcube_db_sqlsrv.php index 45c41cdaf..4339f3dfd 100644 --- a/program/lib/Roundcube/rcube_db_sqlsrv.php +++ b/program/lib/Roundcube/rcube_db_sqlsrv.php @@ -52,7 +52,7 @@ class rcube_db_sqlsrv extends rcube_db protected function conn_configure($dsn, $dbh) { // Set date format in case of non-default language (#1488918) - $this->query("SET DATEFORMAT ymd"); + $dbh->query("SET DATEFORMAT ymd"); } /** |