diff options
author | Simon L <szaimen@e.mail.de> | 2023-06-22 13:58:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 13:58:15 +0200 |
commit | 3672c1d4fba6533f9ab15e01b2a5e4a03d8e0ae5 (patch) | |
tree | d64815e6896f19ec5afd567ee30a782106aabb96 | |
parent | 82f744bb016b059a55d1c6c476a665029e55cedc (diff) | |
parent | 281c73e748ebb13bee7f69e784256ce95e1fe299 (diff) | |
download | nextcloud-server-3672c1d4fba6533f9ab15e01b2a5e4a03d8e0ae5.tar.gz nextcloud-server-3672c1d4fba6533f9ab15e01b2a5e4a03d8e0ae5.zip |
Merge pull request #38931 from nextcloud/backport/38915/stable25
[stable25] adjust admin setup check to increase warning to configure https
-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 e73b12d2462..009e62fd388 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -719,10 +719,10 @@ } } else { messages.push({ - msg: t('core', 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the {linkstart}security tips ↗{linkend}.') + msg: t('core', 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the {linkstart}security tips ↗{linkend}. Without it some important web functionality like "copy to clipboard" or "service workers" will not work!') .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + tipsUrl + '">') .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } } else { |