summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-09-26 11:17:03 +0000
committerthomascube <thomas@roundcube.net>2010-09-26 11:17:03 +0000
commit8603bbba2e0bb3dfe171c0241bf97ab7ef9575fc (patch)
tree9278d085835bdffddb1854643eb502530e52839f
parent0911facde954d60ca3124e03b85b3b9b47c3c6b0 (diff)
Fix base url resolution + better order for condition checks in rcube_mdb2 + updated changelog
-rw-r--r--CHANGELOG1
-rw-r--r--program/include/rcube_mdb2.php8
-rw-r--r--program/include/rcube_shared.inc2
3 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6281b82a4..4069a8111 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Make alias setting in squirrelmail_usercopy plugin configurable (patch by pommi, #1487007)
- Prevent from saving a non-existing skin path in user prefs (#1486936)
- Improve handling of single-part messages with bogus BODYSTRUCTURE (#1486898)
- Fix path to SQL files when using pgsql/mysqli/sqlsrv drivers (#1486902)
diff --git a/program/include/rcube_mdb2.php b/program/include/rcube_mdb2.php
index 0769b635e..a2baf33c0 100644
--- a/program/include/rcube_mdb2.php
+++ b/program/include/rcube_mdb2.php
@@ -123,16 +123,16 @@ class rcube_mdb2
{
// Already connected
if ($this->db_connected) {
+ // connected to read-write db, current connection is ok
+ if ($this->db_mode == 'w')
+ return;
+
// 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')
- return;
-
// Same mode, current connection is ok
if ($this->db_mode == $mode)
return;
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc
index 429969eb7..575a28ae0 100644
--- a/program/include/rcube_shared.inc
+++ b/program/include/rcube_shared.inc
@@ -227,7 +227,7 @@ function make_absolute_url($path, $base_url)
// cut base_url to the last directory
if (strrpos($base_url, '/')>7)
{
- $host_url = substr($base_url, 0, strpos($base_url, '/'));
+ $host_url = substr($base_url, 0, strpos($base_url, '/', 7));
$base_url = substr($base_url, 0, strrpos($base_url, '/'));
}