summaryrefslogtreecommitdiffstats
path: root/apps/encryption/appinfo/app.php
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-03-30 11:49:03 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:28 +0200
commita85e2e0bfdb86de029f7b5fde42ead60498aed82 (patch)
treedfd3ef5d49e3be52e533e2ecd95547f8a08f41ec /apps/encryption/appinfo/app.php
parent4aa125cc0a2b5a129c4f97d807f7a225a7620199 (diff)
downloadnextcloud-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.php11
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();
}