diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-11 11:06:09 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-11 11:06:09 +0100 |
commit | ad360296b940c20b57da9316b079497e0c1c1256 (patch) | |
tree | 3ee6625215099b265a5c2bfbfee1a4ee523616a4 /apps | |
parent | d7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51 (diff) | |
download | nextcloud-server-ad360296b940c20b57da9316b079497e0c1c1256.tar.gz nextcloud-server-ad360296b940c20b57da9316b079497e0c1c1256.zip |
Update tests and apps to the new \OC\Files\Filesystem::init signature
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7e4f677ce9d..2731d5a92f7 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -40,7 +40,7 @@ class Hooks { // Manually initialise Filesystem{} singleton with correct
// fake root path, in order to avoid fatal webdav errors
- \OC\Files\Filesystem::init( $params['uid'] . '/' . 'files' . '/' );
+ \OC\Files\Filesystem::init( $params['uid'], $params['uid'] . '/' . 'files' . '/' );
$view = new \OC_FilesystemView( '/' );
|