aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-03 16:16:09 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-12-09 09:47:26 +0100
commit78a307995c510c0184d915fcab26baa3be815342 (patch)
tree75ded3bfb1a97de121777d553aa398981faed591 /apps/files_trashbin/lib
parent7f7006643f7e659c86b81720dd50b33dbbb07430 (diff)
downloadnextcloud-server-78a307995c510c0184d915fcab26baa3be815342.tar.gz
nextcloud-server-78a307995c510c0184d915fcab26baa3be815342.zip
Fix namespace of Files_Encryption outside of the app
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r--apps/files_trashbin/lib/trashbin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php
index b9d7a4aa6cf..1e8f31dbd2a 100644
--- a/apps/files_trashbin/lib/trashbin.php
+++ b/apps/files_trashbin/lib/trashbin.php
@@ -274,7 +274,7 @@ class Trashbin {
return 0;
}
- $util = new \OCA\Encryption\Util($rootView, $user);
+ $util = new \OCA\Files_Encryption\Util($rootView, $user);
$baseDir = '/files_encryption/';
if (!$util->isSystemWideMountPoint($ownerPath)) {
@@ -448,7 +448,7 @@ class Trashbin {
return false;
}
- $util = new \OCA\Encryption\Util($rootView, $user);
+ $util = new \OCA\Files_Encryption\Util($rootView, $user);
$baseDir = '/files_encryption/';
if (!$util->isSystemWideMountPoint($ownerPath)) {