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/apps
diff options
context:
space:
mode:
authorJuan Pablo Villafáñez <jvillafanez@solidgear.es>2016-10-19 10:39:28 +0300
committerJuan Pablo Villafáñez <jvillafanez@solidgear.es>2016-10-19 10:53:56 +0300
commit26dbe006df8f2c47e59d7d697f2fcfa1786d7327 (patch)
tree0a036a7b62366b9b99b9ed406f9a936f586a95ea /apps
parentcb6b995e0755ef0c6aecc05183099faf39ed386c (diff)
Fix minor typo
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/Command/UpdateGroup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Command/UpdateGroup.php b/apps/user_ldap/lib/Command/UpdateGroup.php
index 64e8c161438..0a7d3bc373e 100644
--- a/apps/user_ldap/lib/Command/UpdateGroup.php
+++ b/apps/user_ldap/lib/Command/UpdateGroup.php
@@ -92,7 +92,7 @@ class UpdateGroup extends Command {
$splittedGroups = $this->checkGroupMappingExists($groupIDs);
if (!empty($splittedGroups['notinDB'])) {
$missingGroups = implode(', ', $splittedGroups['notinDB']);
- $output->writeln("<error>Following groups are missing in the DB and will be skipped: $missingGroups</error>");
+ $output->writeln("<error>The following groups are missing in the DB and will be skipped: $missingGroups</error>");
}
$groupProxy = new Group_Proxy($availableConfigs, $this->ldap);