aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2023-10-11 15:25:28 +0200
committerGitHub <noreply@github.com>2023-10-11 15:25:28 +0200
commitd9cbe105a58054b1325bda7d38e112d50d641e4a (patch)
treeae9cb6e58f7ad4186a99a644f0e322a40e78bcec /apps
parent04db454e9fc57483595e90dee348904acd4315ca (diff)
parentbe6c889414b9600e7d36736b390344e8b3f466b5 (diff)
downloadnextcloud-server-d9cbe105a58054b1325bda7d38e112d50d641e4a.tar.gz
nextcloud-server-d9cbe105a58054b1325bda7d38e112d50d641e4a.zip
Merge pull request #40698 from nextcloud/Valdnet-patch-1
Correct typos and add quotation marks
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php2
-rw-r--r--apps/settings/tests/Controller/CheckSetupControllerTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php b/apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php
index 4c7c182211f..3172abe70f7 100644
--- a/apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php
+++ b/apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php
@@ -33,7 +33,7 @@ class NeedsSystemAddressBookSync {
public function __construct(private IConfig $config, private IL10N $l10n) {}
public function description(): string {
- return $this->l10n->t('The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occured. Please run it manually by calling occ dav:sync-system-addressbook.');
+ return $this->l10n->t('The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling "occ dav:sync-system-addressbook".');
}
public function severity(): string {
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php
index 21d7f10723a..1168f04fbd4 100644
--- a/apps/settings/tests/Controller/CheckSetupControllerTest.php
+++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php
@@ -664,7 +664,7 @@ class CheckSetupControllerTest extends TestCase {
'isFairUseOfFreePushService' => false,
'temporaryDirectoryWritable' => false,
\OCA\Settings\SetupChecks\LdapInvalidUuids::class => ['pass' => true, 'description' => '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.', 'severity' => 'warning'],
- \OCA\Settings\SetupChecks\NeedsSystemAddressBookSync::class => ['pass' => true, 'description' => 'The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occured. Please run it manually by calling occ dav:sync-system-addressbook.', 'severity' => 'warning'],
+ \OCA\Settings\SetupChecks\NeedsSystemAddressBookSync::class => ['pass' => true, 'description' => 'The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling "occ dav:sync-system-addressbook".', 'severity' => 'warning'],
'isBruteforceThrottled' => false,
'bruteforceRemoteAddress' => '',
]