diff options
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php b/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php index d6de11d35b9..8b6bf859142 100644 --- a/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php +++ b/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php @@ -46,13 +46,13 @@ class LdapInvalidUuids implements ISetupCheck { } public function getName(): string { - return $this->l10n->t('Checking for invalid LDAP UUIDs'); + return $this->l10n->t('Invalid LDAP UUIDs'); } public function run(): SetupResult { if (count($this->userMapping->getList(0, 1, true)) === 0 && count($this->groupMapping->getList(0, 1, true)) === 0) { - return SetupResult::success(); + return SetupResult::success($this->l10n->t('None found')); } else { return SetupResult::warning($this->l10n->t('Invalid UUIDs of LDAP users or groups have been found. Please review your "Override UUID detection" settings in the Expert part of the LDAP configuration and use "occ ldap:update-uuid" to update them.')); } |