aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-04-01 17:46:09 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:30 +0200
commitee53ba5ed6e41cc997ed07b1f47305804d607afd (patch)
tree164169e05ab9909a0bbcb2436a48874b9c57b315 /apps/files/index.php
parent9d8c07850d8ade68fd75f8d6934687a6fbe8bc68 (diff)
downloadnextcloud-server-ee53ba5ed6e41cc997ed07b1f47305804d607afd.tar.gz
nextcloud-server-ee53ba5ed6e41cc997ed07b1f47305804d607afd.zip
remove encryption specific code from files app
Diffstat (limited to 'apps/files/index.php')
-rw-r--r--apps/files/index.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 23830da695d..ea0fd0ce2fe 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -84,8 +84,6 @@ $config = \OC::$server->getConfig();
// mostly for the home storage's free space
$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;
$nav = new OCP\Template('files', 'appnavigation', '');
@@ -145,7 +143,6 @@ $tmpl->assign('isPublic', false);
$tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'no'));
$tmpl->assign("mailPublicNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_public_notification', 'no'));
$tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes'));
-$tmpl->assign("encryptionInitStatus", $encryptionInitStatus);
$tmpl->assign('appNavigation', $nav);
$tmpl->assign('appContents', $contentItems);