diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-12-07 19:11:32 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-12-07 19:11:32 +0100 |
commit | 0174cb10aee2d6729aa15ca77b6dffb810e99301 (patch) | |
tree | 399ff1b8659324d75025e8192d4a171b52d8f5fd | |
parent | 293df6308c2c8b3581ee4ac812b3ac65f31ccc66 (diff) | |
download | volse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.tar.gz volse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.tar.bz2 volse-hubzilla-0174cb10aee2d6729aa15ca77b6dffb810e99301.zip |
fix issue #210
-rw-r--r-- | include/RedDAV/RedBrowser.php | 2 |
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]); |