aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-03 16:16:09 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-12-09 09:47:26 +0100
commit78a307995c510c0184d915fcab26baa3be815342 (patch)
tree75ded3bfb1a97de121777d553aa398981faed591 /apps/files
parent7f7006643f7e659c86b81720dd50b33dbbb07430 (diff)
downloadnextcloud-server-78a307995c510c0184d915fcab26baa3be815342.tar.gz
nextcloud-server-78a307995c510c0184d915fcab26baa3be815342.zip
Fix namespace of Files_Encryption outside of the app
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 4142a02b97e..6635d70d008 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -69,7 +69,7 @@ $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\Encryption\Session(new \OC\Files\View('/'));
+ $session = new \OCA\Files_Encryption\Session(new \OC\Files\View('/'));
$encryptionInitStatus = $session->getInitialized();
}