aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-12-07 19:11:32 +0100
committerMario Vavti <mario@mariovavti.com>2015-12-07 19:11:32 +0100
commit0174cb10aee2d6729aa15ca77b6dffb810e99301 (patch)
tree399ff1b8659324d75025e8192d4a171b52d8f5fd /include
parent293df6308c2c8b3581ee4ac812b3ac65f31ccc66 (diff)
downloadvolse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.tar.gz
volse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.tar.bz2
volse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.zip
fix issue #210
Diffstat (limited to 'include')
-rw-r--r--include/RedDAV/RedBrowser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/RedDAV/RedBrowser.php b/include/RedDAV/RedBrowser.php
index efea5d92f..1aa5f435e 100644
--- a/include/RedDAV/RedBrowser.php
+++ b/include/RedDAV/RedBrowser.php
@@ -188,7 +188,7 @@ class RedBrowser extends DAV\Browser\Plugin {
$parentHash = '';
$owner = $this->auth->owner_id;
- $splitPath = split('/', $fullPath);
+ $splitPath = explode('/', $fullPath);
if (count($splitPath) > 3) {
for ($i = 3; $i < count($splitPath); $i++) {
$attachName = urldecode($splitPath[$i]);