summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2023-06-20 22:54:48 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-06-21 14:30:25 +0000
commit81b64db13632031ff921bd46665272530288e25d (patch)
tree8b4a67246d6da065db0bfe0adb6bf34818c47870
parent35ac87dac0ede059a51b30f7cce31db307223c38 (diff)
downloadnextcloud-server-81b64db13632031ff921bd46665272530288e25d.tar.gz
nextcloud-server-81b64db13632031ff921bd46665272530288e25d.zip
adjust admin setup check to increase warning to set up https
Signed-off-by: Simon L <szaimen@e.mail.de>
-rw-r--r--core/js/setupchecks.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index b2d021c6265..aa11eb0b8e9 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 {