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/changepassword | |
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/changepassword')
-rw-r--r-- | settings/changepassword/controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index ee596c3e7ed..4ed907daf96 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -52,7 +52,7 @@ class Controller { if (\OC_App::isEnabled('files_encryption')) { //handle the recovery case - $util = new \OCA\Encryption\Util(new \OC\Files\View('/'), $username); + $util = new \OCA\Files_Encryption\Util(new \OC\Files\View('/'), $username); $recoveryAdminEnabled = \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $validRecoveryPassword = false; |