diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-02-04 10:17:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 10:17:08 +0100 |
commit | 105169433e8432d290873d170c3a28b50dd3de2d (patch) | |
tree | 588a8d875d7caceb66a9800980191aee559df9f4 /core/js/setupchecks.js | |
parent | e172eb09e046b9167a6f5c8a08dd34f0fd5e49b4 (diff) | |
download | nextcloud-server-105169433e8432d290873d170c3a28b50dd3de2d.tar.gz nextcloud-server-105169433e8432d290873d170c3a28b50dd3de2d.zip |
Update core/js/setupchecks.js
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Co-authored-by: Simon L. <szaimen@e.mail.de>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 45dc2a9b714..435dffe518d 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -198,8 +198,8 @@ 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>'), + .replace('{mailSettingsStart}', '<a href="' + OC.generateUrl('/settings/admin') + '">') + .replace('{mailSettingsEnd}', '</a>'), type: OC.SetupChecks.MESSAGE_TYPE_INFO }); } |