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
path: root/core
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-22 14:31:44 +0300
committerCôme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com>2022-04-01 15:18:02 +0300
commit77bdad84c21f2d836b778a2741eb8e8512ee19eb (patch)
treeb381c26b71b0521da62986d3d026df45eb4c8cb7 /core
parentd3d53494d499c036f230f11b24f4b4acfbcc34db (diff)
Add ldap:reset-group command to unmap groups from LDAP
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
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;
}