From 281c73e748ebb13bee7f69e784256ce95e1fe299 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 20 Jun 2023 22:54:48 +0200 Subject: [PATCH] adjust admin setup check to increase warning to set up https Signed-off-by: Simon L --- core/js/setupchecks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index e73b12d246297..009e62fd38825 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}', '') .replace('{linkend}', ''), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING + type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } } else {