Fixed bug causing nested file read over webdav to fail

This commit is contained in:
Sam Tuke 2013-02-09 12:42:18 +00:00
parent b95bc663af
commit 1aba986d9f
1 changed files with 1 additions and 1 deletions

View File

@ -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;