Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2016-06-09 16:05:02 +0300
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-06-09 16:05:02 +0300
commit4c26abe228bedb0ebb0ffa5a6f5f399e16871880 (patch)
tree9bb486597a989cf6777bd7a0a750417cc8700d9a /core/Command/Encryption
parent90c1ec1c49798232c0c1303ccbddacac536b5768 (diff)
Fix the FIXME (#25022)
Diffstat (limited to 'core/Command/Encryption')
-rw-r--r--core/Command/Encryption/DecryptAll.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php
index d060918a506..83c6c1dc168 100644
--- a/core/Command/Encryption/DecryptAll.php
+++ b/core/Command/Encryption/DecryptAll.php
@@ -129,8 +129,7 @@ class DecryptAll extends Command {
}
$uid = $input->getArgument('user');
- //FIXME WHEN https://github.com/owncloud/core/issues/24994 is fixed
- if ($uid === null) {
+ if ($uid === '') {
$message = 'your ownCloud';
} else {
$message = "$uid's account";