diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-09 12:56:57 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-09 12:56:57 +0100 |
commit | 26861a98c59c39901b9127831b7edf0c0a3eff40 (patch) | |
tree | 47d8331ea605e3d37c27f4dcdd14b791220cba92 /apps/files | |
parent | e61f24f2aae6163e09aa4462c9e2de4d592deb1a (diff) | |
parent | b85e34c1da075ad551321541a4e75d0d3a7015a5 (diff) | |
download | nextcloud-server-26861a98c59c39901b9127831b7edf0c0a3eff40.tar.gz nextcloud-server-26861a98c59c39901b9127831b7edf0c0a3eff40.zip |
Merge pull request #12568 from owncloud/autoload-encryption-classes
Fix namespaces of encryption classes and encryption tests
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/index.php | 2 |
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(); } |