Aleksander Machniak
2013-01-09 f96593772ce3d685f7add2c3357428b82a5a6c84
Force autocommit mode in mysql database driver (#1488902)
2 files modified
7 ■■■■■ changed files
CHANGELOG 4 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_mysql.php 3 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -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)
program/lib/Roundcube/rcube_db_mysql.php
@@ -126,6 +126,9 @@
        // 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;
    }