diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-27 14:28:54 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-09-27 14:29:57 +0200 |
commit | b9f963225ff646eabd9c6cd1bb6799eba99d3c79 (patch) | |
tree | 04485e47d7f343de17bdfa9ca0452f7797610c44 /core/Command | |
parent | 704c7b6672cc0e0a7fb4ef7ed7b172999049b355 (diff) | |
download | nextcloud-server-b9f963225ff646eabd9c6cd1bb6799eba99d3c79.tar.gz nextcloud-server-b9f963225ff646eabd9c6cd1bb6799eba99d3c79.zip |
Do not allow to have an empty display name
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Group/Add.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/Command/Group/Add.php b/core/Command/Group/Add.php index eb2ecd0c533..f2ee6195a44 100644 --- a/core/Command/Group/Add.php +++ b/core/Command/Group/Add.php @@ -70,8 +70,9 @@ class Add extends Base { $group = $this->groupManager->createGroup($gid); $output->writeln('Created group "' . $group->getGID() . '"'); - if ($input->hasOption('display-name')) { - $group->setDisplayName($input->getOption('display-name')); + $displayName = trim((string) $input->getOption('display-name')); + if ($displayName !== '') { + $group->setDisplayName($displayName); } } } |