diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-03-30 11:49:03 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:28 +0200 |
commit | a85e2e0bfdb86de029f7b5fde42ead60498aed82 (patch) | |
tree | dfd3ef5d49e3be52e533e2ecd95547f8a08f41ec /apps/encryption/appinfo/app.php | |
parent | 4aa125cc0a2b5a129c4f97d807f7a225a7620199 (diff) | |
download | nextcloud-server-a85e2e0bfdb86de029f7b5fde42ead60498aed82.tar.gz nextcloud-server-a85e2e0bfdb86de029f7b5fde42ead60498aed82.zip |
make recovery settings work
Diffstat (limited to 'apps/encryption/appinfo/app.php')
-rw-r--r-- | apps/encryption/appinfo/app.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/apps/encryption/appinfo/app.php b/apps/encryption/appinfo/app.php index 72e7fc42ca0..38f9ff2f040 100644 --- a/apps/encryption/appinfo/app.php +++ b/apps/encryption/appinfo/app.php @@ -19,15 +19,10 @@ * */ -use OCA\Encryption\AppInfo\Encryption; +namespace OCA\Encryption\AppInfo; -if (!OC::$CLI) { +if (!\OC::$CLI) { $di = \OC::$server; - $app = new Encryption('encryption', - [], - $di->getEncryptionManager(), - $di->getConfig()); - - $app->boot(); + $app = new Application(); } |