diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-03-01 15:23:17 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2018-03-02 10:09:52 +0100 |
commit | 8042e6b8fb0f0b4d3dd2c291729144f767575c56 (patch) | |
tree | 7fbf72c70dbf1c2173032a940167d6da00caef16 /apps/encryption/lib/AppInfo/Application.php | |
parent | 0f3ba9444e8b683ba89e100b6a43cab70b3788b9 (diff) | |
download | nextcloud-server-8042e6b8fb0f0b4d3dd2c291729144f767575c56.tar.gz nextcloud-server-8042e6b8fb0f0b4d3dd2c291729144f767575c56.zip |
this was a migration step to ownCloud 8.0 to restructure the encryption folder which is no longer needed
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/encryption/lib/AppInfo/Application.php')
-rw-r--r-- | apps/encryption/lib/AppInfo/Application.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/apps/encryption/lib/AppInfo/Application.php b/apps/encryption/lib/AppInfo/Application.php index da59169694b..55839e097a1 100644 --- a/apps/encryption/lib/AppInfo/Application.php +++ b/apps/encryption/lib/AppInfo/Application.php @@ -55,19 +55,12 @@ class Application extends \OCP\AppFramework\App { /** * @param array $urlParams - * @param bool $encryptionSystemReady */ - public function __construct($urlParams = array(), $encryptionSystemReady = true) { + public function __construct($urlParams = array()) { parent::__construct('encryption', $urlParams); $this->encryptionManager = \OC::$server->getEncryptionManager(); $this->config = \OC::$server->getConfig(); $this->registerServices(); - if($encryptionSystemReady === false) { - /** @var Session $session */ - $session = $this->getContainer()->query('Session'); - $session->setStatus(Session::RUN_MIGRATION); - } - } public function setUp() { |