thomascube
2010-09-21 cb2bc809ef29f349d38c89e202d821e67bb4c947
Fix db_mode check in insert_id()

1 files modified
6 ■■■■■ changed files
program/include/rcube_mdb2.php 6 ●●●●● patch | view | raw | blame | history
program/include/rcube_mdb2.php
@@ -123,9 +123,11 @@
    {
        // Already connected
        if ($this->db_connected) {
            // no replication, current connection is ok
            if (empty($this->db_dsnr) || $this->db_dsnw == $this->db_dsnr)
            // no replication, current connection is ok for read and write
            if (empty($this->db_dsnr) || $this->db_dsnw == $this->db_dsnr) {
                $this->db_mode = 'w';
                return;
            }
            // connected to read-write db, current connection is ok
            if ($this->db_mode == 'w')