summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/Command
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/Command')
-rw-r--r--apps/user_ldap/lib/Command/CheckUser.php4
-rw-r--r--apps/user_ldap/lib/Command/ShowRemnants.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_ldap/lib/Command/CheckUser.php b/apps/user_ldap/lib/Command/CheckUser.php
index 236d2e51d0b..af2806e8cc6 100644
--- a/apps/user_ldap/lib/Command/CheckUser.php
+++ b/apps/user_ldap/lib/Command/CheckUser.php
@@ -69,7 +69,7 @@ class CheckUser extends Command {
->addArgument(
'ocName',
InputArgument::REQUIRED,
- 'the user name as used in ownCloud'
+ 'the user name as used in Nextcloud'
)
->addOption(
'force',
@@ -102,7 +102,7 @@ class CheckUser extends Command {
/**
* checks whether a user is actually mapped
- * @param string $ocName the username as used in ownCloud
+ * @param string $ocName the username as used in Nextcloud
* @throws \Exception
* @return true
*/
diff --git a/apps/user_ldap/lib/Command/ShowRemnants.php b/apps/user_ldap/lib/Command/ShowRemnants.php
index 0e6aea6a5ab..365c8967ee0 100644
--- a/apps/user_ldap/lib/Command/ShowRemnants.php
+++ b/apps/user_ldap/lib/Command/ShowRemnants.php
@@ -54,7 +54,7 @@ class ShowRemnants extends Command {
protected function configure() {
$this
->setName('ldap:show-remnants')
- ->setDescription('shows which users are not available on LDAP anymore, but have remnants in ownCloud.')
+ ->setDescription('shows which users are not available on LDAP anymore, but have remnants in Nextcloud.')
->addOption('json', null, InputOption::VALUE_NONE, 'return JSON array instead of pretty table.');
}
@@ -67,7 +67,7 @@ class ShowRemnants extends Command {
/** @var \Symfony\Component\Console\Helper\Table $table */
$table = new Table($output);
$table->setHeaders(array(
- 'ownCloud name', 'Display Name', 'LDAP UID', 'LDAP DN', 'Last Login',
+ 'Nextcloud name', 'Display Name', 'LDAP UID', 'LDAP DN', 'Last Login',
'Dir', 'Sharer'));
$rows = array();
$resultSet = $this->dui->getUsers();