summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_db_mysql.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-01-09 08:48:28 +0100
committerAleksander Machniak <alec@alec.pl>2013-01-09 08:48:28 +0100
commitf96593772ce3d685f7add2c3357428b82a5a6c84 (patch)
tree6a2f62b4dea7a41a159a900384896e806d6ebb1c /program/lib/Roundcube/rcube_db_mysql.php
parent16915ee2ad97060e0c0c9376adf7eca77516cd86 (diff)
Force autocommit mode in mysql database driver (#1488902)
Diffstat (limited to 'program/lib/Roundcube/rcube_db_mysql.php')
-rw-r--r--program/lib/Roundcube/rcube_db_mysql.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_db_mysql.php b/program/lib/Roundcube/rcube_db_mysql.php
index c32cc259c..8ab6403c8 100644
--- a/program/lib/Roundcube/rcube_db_mysql.php
+++ b/program/lib/Roundcube/rcube_db_mysql.php
@@ -126,6 +126,9 @@ class rcube_db_mysql extends rcube_db
// Always return matching (not affected only) rows count
$result[PDO::MYSQL_ATTR_FOUND_ROWS] = true;
+ // Enable AUTOCOMMIT mode (#1488902)
+ $dsn_options[PDO::ATTR_AUTOCOMMIT] = true;
+
return $result;
}