diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-30 22:10:04 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:28 +0200 |
commit | 00338f9dca97fd7b48d96201fd607cf460c385ff (patch) | |
tree | f88bfad7483e6b7432fdf4a2af5907efead59954 /apps/files | |
parent | 99255ff3a92b2d242f3c723979341951a303f83d (diff) | |
download | nextcloud-server-00338f9dca97fd7b48d96201fd607cf460c385ff.tar.gz nextcloud-server-00338f9dca97fd7b48d96201fd607cf460c385ff.zip |
Removing files_encryption left overs
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/index.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/files/index.php b/apps/files/index.php index cfc5b931e13..3f932859029 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -86,10 +86,6 @@ $dirInfo = \OC\Files\Filesystem::getFileInfo('/', false); $storageInfo=OC_Helper::getStorageInfo('/', $dirInfo); // if the encryption app is disabled, than everything is fine (INIT_SUCCESSFUL status code) $encryptionInitStatus = 2; -if (OC_App::isEnabled('files_encryption')) { - $session = new \OCA\Files_Encryption\Session(new \OC\Files\View('/')); - $encryptionInitStatus = $session->getInitialized(); -} $nav = new OCP\Template('files', 'appnavigation', ''); |