Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-03 18:16:09 +0300
committerJoas Schilling <nickvergessen@gmx.de>2014-12-09 11:47:26 +0300
commit78a307995c510c0184d915fcab26baa3be815342 (patch)
tree75ded3bfb1a97de121777d553aa398981faed591 /settings/ajax
parent7f7006643f7e659c86b81720dd50b33dbbb07430 (diff)
Fix namespace of Files_Encryption outside of the app
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/decryptall.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php
index 527e5b8fcee..0ad25927461 100644
--- a/settings/ajax/decryptall.php
+++ b/settings/ajax/decryptall.php
@@ -11,7 +11,7 @@ $params = array('uid' => \OCP\User::getUser(),
'password' => $_POST['password']);
$view = new OC\Files\View('/');
-$util = new \OCA\Encryption\Util($view, \OCP\User::getUser());
+$util = new \OCA\Files_Encryption\Util($view, \OCP\User::getUser());
$l = \OC::$server->getL10N('settings');
$result = $util->initEncryption($params);