diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-01-31 20:39:52 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-02-05 14:31:47 +0100 |
commit | 78b390da3187920f59ce01c821202b924cff195a (patch) | |
tree | 167cd6da3323a729bb948395027d21b22bce504c | |
parent | b3257a315dc740bdfd8e3d9d2d091445f12c70ff (diff) | |
download | nextcloud-server-78b390da3187920f59ce01c821202b924cff195a.tar.gz nextcloud-server-78b390da3187920f59ce01c821202b924cff195a.zip |
don't expect OC_FilesystemView, this is depreciated
-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 d011e677a41..4d6a084908e 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; |