summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-04-05 10:57:33 +0200
committerGitHub <noreply@github.com>2022-04-05 10:57:33 +0200
commit835e28d0b2cb77930567d86fc4092d8b472a3130 (patch)
treeb40d35af9e98382cb258490aad96a5bf7d887428 /core
parent34c9b572eb64a34c0f2cc7478a4f43b72ea3275f (diff)
parentd7a291039dd5d58a020ef69c83f00dc15473d962 (diff)
downloadnextcloud-server-835e28d0b2cb77930567d86fc4092d8b472a3130.tar.gz
nextcloud-server-835e28d0b2cb77930567d86fc4092d8b472a3130.zip
Merge pull request #31661 from nextcloud/enh/user_ldap-add-command-to-unmap-groups
Add ldap:reset-group command to unmap groups from LDAP
Diffstat (limited to 'core')
-rw-r--r--core/Command/Group/Delete.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Group/Delete.php b/core/Command/Group/Delete.php
index 75202308944..be97be83407 100644
--- a/core/Command/Group/Delete.php
+++ b/core/Command/Group/Delete.php
@@ -61,7 +61,7 @@ class Delete extends Base {
$output->writeln('<error>Group "' . $gid . '" could not be deleted.</error>');
return 1;
}
- if (! $this->groupManager->groupExists($gid)) {
+ if (!$this->groupManager->groupExists($gid)) {
$output->writeln('<error>Group "' . $gid . '" does not exist.</error>');
return 1;
}