diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-08 10:12:28 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-06-08 10:12:28 +0200 |
commit | b7935dcebd97a0a3f08909548a38e8596f8eb4d9 (patch) | |
tree | 0ae11157775945dd57e29dcdff970961729a9da7 /core | |
parent | 111b4d705108bfa215a4bc9440b2175fd2f8a40f (diff) | |
parent | d4ba982131de93b0217c9376307489fe4ca033b0 (diff) | |
download | nextcloud-server-b7935dcebd97a0a3f08909548a38e8596f8eb4d9.tar.gz nextcloud-server-b7935dcebd97a0a3f08909548a38e8596f8eb4d9.zip |
Merge pull request #24998 from owncloud/issue-24994-allow-decrypting-user-0-only
Allow to decrypt user '0' files only
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Encryption/DecryptAll.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php index 8d7d26f3d23..e8aec064f25 100644 --- a/core/Command/Encryption/DecryptAll.php +++ b/core/Command/Encryption/DecryptAll.php @@ -111,7 +111,8 @@ class DecryptAll extends Command { $this->addArgument( 'user', InputArgument::OPTIONAL, - 'user for which you want to decrypt all files (optional)' + 'user for which you want to decrypt all files (optional)', + '' ); } |