diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-01-31 20:39:52 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-01-31 20:39:52 +0100 |
commit | bef58f5361eb5480d4633d733b3c8d3f80e034c4 (patch) | |
tree | ef7a887008d6be090de56385777f1754bb11d1d6 /apps | |
parent | 4d1086c35fa8aed35ba8cdef75764564e75ba769 (diff) | |
download | nextcloud-server-bef58f5361eb5480d4633d733b3c8d3f80e034c4.tar.gz nextcloud-server-bef58f5361eb5480d4633d733b3c8d3f80e034c4.zip |
don't expect OC_FilesystemView, this is depreciated
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 8816d4d649a..ae3e2a2e15a 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -57,7 +57,7 @@ class Util { * @param $userId * @param bool $client */ - public function __construct(\OC_FilesystemView $view, $userId, $client = false) { + public function __construct($view, $userId, $client = false) { $this->view = $view; $this->client = $client; |