diff options
author | Björn Schießle <bjoern@schiessle.org> | 2015-05-26 17:28:27 +0200 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2015-05-26 17:28:27 +0200 |
commit | 9366dde8756a0f11dfcbb4b95002c6710fc6b846 (patch) | |
tree | 5c0e2a974b2d94a2e96cfe2d06976ea2d620a72c /core | |
parent | 07c6e523b1c1bec7997c65927ba43e393dc8f5f0 (diff) | |
parent | 7d2666699bc37a8f45035e82712143818ed0ab65 (diff) | |
download | nextcloud-server-9366dde8756a0f11dfcbb4b95002c6710fc6b846.tar.gz nextcloud-server-9366dde8756a0f11dfcbb4b95002c6710fc6b846.zip |
Merge pull request #15985 from owncloud/hotfix/fix-encryption-references
[enc2] fix references to legacy encryption app name
Diffstat (limited to 'core')
-rw-r--r-- | core/command/user/resetpassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/user/resetpassword.php b/core/command/user/resetpassword.php index 7c405592114..3e4b41c0a43 100644 --- a/core/command/user/resetpassword.php +++ b/core/command/user/resetpassword.php @@ -78,7 +78,7 @@ class ResetPassword extends Command { /** @var $dialog \Symfony\Component\Console\Helper\DialogHelper */ $dialog = $this->getHelperSet()->get('dialog'); - if (\OCP\App::isEnabled('files_encryption')) { + if (\OCP\App::isEnabled('encryption')) { $output->writeln( '<error>Warning: Resetting the password when using encryption will result in data loss!</error>' ); |