diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-10-07 11:52:21 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-10-07 11:52:21 +0200 |
commit | 6a6992f650747703f0531918d050b926965339b2 (patch) | |
tree | ed05940c4fb3b33fba98723596b07c7498e9977c /program/lib/Roundcube/rcube_db.php | |
parent | a69f9918cd1d3a0ca5fec28ac71801ff223435ae (diff) |
Assign the chosen mode to the table map
Diffstat (limited to 'program/lib/Roundcube/rcube_db.php')
-rw-r--r-- | program/lib/Roundcube/rcube_db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index b215c3aac..08935853a 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -256,7 +256,7 @@ class rcube_db // remember mode chosen (for primary table) $table = $matches[0][2]; - $this->table_connections[$table]; + $this->table_connections[$table] = $mode; } return $mode; |