diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-09 08:48:28 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-09 08:48:28 +0100 |
commit | f96593772ce3d685f7add2c3357428b82a5a6c84 (patch) | |
tree | 6a2f62b4dea7a41a159a900384896e806d6ebb1c /program/lib | |
parent | 16915ee2ad97060e0c0c9376adf7eca77516cd86 (diff) |
Force autocommit mode in mysql database driver (#1488902)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_db_mysql.php | 3 |
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; } |