diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-03 16:16:09 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-09 09:47:26 +0100 |
commit | 78a307995c510c0184d915fcab26baa3be815342 (patch) | |
tree | 75ded3bfb1a97de121777d553aa398981faed591 /settings/ajax | |
parent | 7f7006643f7e659c86b81720dd50b33dbbb07430 (diff) | |
download | nextcloud-server-78a307995c510c0184d915fcab26baa3be815342.tar.gz nextcloud-server-78a307995c510c0184d915fcab26baa3be815342.zip |
Fix namespace of Files_Encryption outside of the app
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/decryptall.php | 2 |
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); |