aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-07-26 09:04:52 +0200
committerMario Vavti <mario@mariovavti.com>2016-07-26 09:05:38 +0200
commit54ecf0f45f4f8d67a34025b78d025b154eea3fba (patch)
treed9ebbec71f42ac0c7987718f90adbd98900d1875
parent24d28bc23a5dcc0dce7765463d94cc68e599efae (diff)
downloadvolse-hubzilla-54ecf0f45f4f8d67a34025b78d025b154eea3fba.tar.gz
volse-hubzilla-54ecf0f45f4f8d67a34025b78d025b154eea3fba.tar.bz2
volse-hubzilla-54ecf0f45f4f8d67a34025b78d025b154eea3fba.zip
URLUtil path has changed since sabredav 1.8 - fixes renaming issue in dav clients
-rw-r--r--Zotlabs/Storage/Directory.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php
index 6242d5274..0860f99a1 100644
--- a/Zotlabs/Storage/Directory.php
+++ b/Zotlabs/Storage/Directory.php
@@ -3,6 +3,7 @@
namespace Zotlabs\Storage;
use Sabre\DAV;
+use Sabre\HTTP;
/**
* @brief RedDirectory class.
@@ -159,7 +160,7 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota {
throw new DAV\Exception\Forbidden('Permission denied.');
}
- list($parent_path, ) = DAV\URLUtil::splitPath($this->red_path);
+ list($parent_path, ) = HTTP\URLUtil::splitPath($this->red_path);
$new_path = $parent_path . '/' . $name;
$r = q("UPDATE attach SET filename = '%s' WHERE hash = '%s' AND uid = %d",