From 4d9308bd7ef30cded53caacd11925f2ee83c9efd Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 28 Sep 2011 15:34:34 +0000 Subject: [PATCH] * GroupDAV/KDE: access with old (KDE < 4.7) GroupDAV resource is working again (client did not find any folder, because it requies full URL not just pathes in PROPFIND response) --- egw-pear/HTTP/WebDAV/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egw-pear/HTTP/WebDAV/Server.php b/egw-pear/HTTP/WebDAV/Server.php index 1e9acde4ba..0d96e66f79 100644 --- a/egw-pear/HTTP/WebDAV/Server.php +++ b/egw-pear/HTTP/WebDAV/Server.php @@ -824,7 +824,7 @@ class HTTP_WebDAV_Server /* TODO right now the user implementation has to make sure collections end in a slash, this should be done in here by checking the resource attribute */ - $href = $this->_mergePaths($this->_SERVER['SCRIPT_NAME'], $path); + $href = $this->_mergePaths($this->base_uri, $path); /* minimal urlencoding is needed for the resource path */ $href = $this->_urlencode($href);