Changeset 3993 in subversion
- Timestamp:
- Sep 26, 2010 7:17:03 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_mdb2.php (modified) (2 diffs)
-
program/include/rcube_shared.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3989 r3993 2 2 =========================== 3 3 4 - Make alias setting in squirrelmail_usercopy plugin configurable (patch by pommi, #1487007) 4 5 - Prevent from saving a non-existing skin path in user prefs (#1486936) 5 6 - Improve handling of single-part messages with bogus BODYSTRUCTURE (#1486898) -
trunk/roundcubemail/program/include/rcube_mdb2.php
r3989 r3993 124 124 // Already connected 125 125 if ($this->db_connected) { 126 // connected to read-write db, current connection is ok 127 if ($this->db_mode == 'w') 128 return; 129 126 130 // no replication, current connection is ok for read and write 127 131 if (empty($this->db_dsnr) || $this->db_dsnw == $this->db_dsnr) { … … 129 133 return; 130 134 } 131 132 // connected to read-write db, current connection is ok133 if ($this->db_mode == 'w')134 return;135 135 136 136 // Same mode, current connection is ok -
trunk/roundcubemail/program/include/rcube_shared.inc
r3991 r3993 228 228 if (strrpos($base_url, '/')>7) 229 229 { 230 $host_url = substr($base_url, 0, strpos($base_url, '/' ));230 $host_url = substr($base_url, 0, strpos($base_url, '/', 7)); 231 231 $base_url = substr($base_url, 0, strrpos($base_url, '/')); 232 232 }
Note: See TracChangeset
for help on using the changeset viewer.
