diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-09 08:48:28 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-09 09:20:00 +0100 |
commit | fd88a22eff5c62c5f0c0063132f862dadbcb2eaa (patch) | |
tree | 5e01c8a90309feda18841ec49151da83643d949f | |
parent | 942cbb658180e8260441225dd74457ef9503a6d0 (diff) |
Force autocommit mode in mysql database driver (#1488902)
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | program/lib/Roundcube/rcube_db_mysql.php | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,10 @@ CHANGELOG Roundcube Webmail =========================== +- Force autocommit mode in mysql database driver (#1488902) + +RELEASE 0.9-beta +---------------- - Fix searching by date in address book (#1488888) - Improve charset detection by prioritizing charset according to user language (#1485669) - Fix handling of escaped separator in vCard file (#1488896) 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; } |