diff options
author | Björn Schießle <bjoern@schiessle.org> | 2015-09-14 12:37:06 +0200 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2015-09-14 12:37:06 +0200 |
commit | f9b05578a62973e8fa0fee619cf84474efc3650b (patch) | |
tree | 01e16e85c214296181d0fc5a89bbe2594bb787fe | |
parent | 341b733dec40aacf7ecbc66b2ca0381c3a119a24 (diff) | |
parent | 69b64b5b10f66e2826d9b59e26695ae2fa9ef161 (diff) | |
download | nextcloud-server-f9b05578a62973e8fa0fee619cf84474efc3650b.tar.gz nextcloud-server-f9b05578a62973e8fa0fee619cf84474efc3650b.zip |
Merge pull request #19012 from owncloud/occ_encrypt_all_fix_name
use the same pattern for the command name like every other command
-rw-r--r-- | core/command/encryption/encryptall.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/encryption/encryptall.php b/core/command/encryption/encryptall.php index db413a33d92..7f33e18ecbb 100644 --- a/core/command/encryption/encryptall.php +++ b/core/command/encryption/encryptall.php @@ -83,7 +83,7 @@ class EncryptAll extends Command { protected function configure() { parent::configure(); - $this->setName('encryption:encrypt_all'); + $this->setName('encryption:encrypt-all'); $this->setDescription( 'This will encrypt all files for all users. ' . 'Please make sure that no user access his files during this process!' |