diff options
author | Sam Tuke <samtuke@owncloud.com> | 2013-02-09 12:42:18 +0000 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2013-02-09 12:42:18 +0000 |
commit | 1aba986d9f219a872c83b5f8b46f641e2699a222 (patch) | |
tree | db1386e7dbf288e7e330844bd2e7aa0f9659be5a | |
parent | b95bc663af4135eff12a6a0c97afe37859f35094 (diff) | |
download | nextcloud-server-1aba986d9f219a872c83b5f8b46f641e2699a222.tar.gz nextcloud-server-1aba986d9f219a872c83b5f8b46f641e2699a222.zip |
Fixed bug causing nested file read over webdav to fail
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 55cddf2bec8..7ae36e34ce1 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -281,7 +281,7 @@ class Proxy extends \OC_FileProxy { // Reformat path for use with OC_FSV $path_split = explode( '/', $path ); - $path_f = implode( array_slice( $path_split, 3 ) ); + $path_f = implode( '/', array_slice( $path_split, 3 ) ); // Disable encryption proxy to prevent recursive calls \OC_FileProxy::$enabled = false; |