diff options
author | szaimen <szaimen@e.mail.de> | 2022-02-04 10:16:29 +0100 |
---|---|---|
committer | Simon L. (Rebase PR Action) <szaimen@e.mail.de> | 2022-02-15 22:56:47 +0000 |
commit | 4ee3d5ef80032a67dc1e57f8f634868c18e99d44 (patch) | |
tree | f21b37cc9982bca8e6e240af2fefd14e54abbba1 /core | |
parent | 0ae51b96a330355295b5de3277591c26b5332c1d (diff) | |
download | nextcloud-server-4ee3d5ef80032a67dc1e57f8f634868c18e99d44.tar.gz nextcloud-server-4ee3d5ef80032a67dc1e57f8f634868c18e99d44.zip |
Remove spaces around link
See https://github.com/nextcloud/server/pull/31003
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 5976f3b701c..fdeed4897d0 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -197,9 +197,9 @@ } if (!data.wasEmailTestSuccessful) { messages.push({ - msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart} Basic settings {mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) - .replace('{mailSettingsStart} ', '<a href="' + OC.generateUrl('/settings/admin') + '">') - .replace(' {mailSettingsEnd}', '</a>'), + msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart}Basic settings{mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) + .replace('{mailSettingsStart}', '<a href="' + OC.generateUrl('/settings/admin') + '">') + .replace('{mailSettingsEnd}', '</a>'), type: OC.SetupChecks.MESSAGE_TYPE_INFO }); } |