summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_shared.inc
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-26 11:17:03 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-26 11:17:03 +0000
commitbac575abf1b61f8d7e28eee97b7e87dc9704a4db (patch)
treeeab033434c46f9e41ebcbf6a9e39ae1715950688 /roundcubemail/program/include/rcube_shared.inc
parent5ae1223029534b93f6811f393c2af5b0f52a4fa2 (diff)
Fix base url resolution + better order for condition checks in rcube_mdb2 + updated changelog
git-svn-id: https://svn.roundcube.net/trunk@3993 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_shared.inc')
-rw-r--r--roundcubemail/program/include/rcube_shared.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_shared.inc b/roundcubemail/program/include/rcube_shared.inc
index 429969eb7..575a28ae0 100644
--- a/roundcubemail/program/include/rcube_shared.inc
+++ b/roundcubemail/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, '/'));
}