From 2663fc442c7c769c9e67c12d2b92314392afb37c Mon Sep 17 00:00:00 2001
From: Victor Goff <keeperotphones@gmail.com>
Date: Fri, 23 Aug 2019 07:01:45 -0400
Subject: [PATCH] adviced should be advised

Signed-off-by: Victor Goff <keeperotphones@gmail.com>
---
 core/js/setupchecks.js                 | 2 +-
 core/js/tests/specs/setupchecksSpec.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 0e8aeca8455..f9829954f16 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -634,7 +634,7 @@
 					}
 				} else {
 					messages.push({
-						msg: t('core', 'Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href="{docUrl}">security tips ↗</a>.', {docUrl:  tipsUrl}),
+						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 <a href="{docUrl}">security tips ↗</a>.', {docUrl:  tipsUrl}),
 						type: OC.SetupChecks.MESSAGE_TYPE_WARNING
 					});
 				}
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js
index ab12ab63042..86d4e47a819 100644
--- a/core/js/tests/specs/setupchecksSpec.js
+++ b/core/js/tests/specs/setupchecksSpec.js
@@ -1403,7 +1403,7 @@ describe('OC.SetupChecks tests', function() {
 
 		async.done(function( data, s, x ){
 			expect(data).toEqual([{
-				msg: 'Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href="https://docs.example.org/admin-security">security tips ↗</a>.',
+				msg: 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the <a href="https://docs.example.org/admin-security">security tips ↗</a>.',
 				type: OC.SetupChecks.MESSAGE_TYPE_WARNING
 			}]);
 			done();
-- 
GitLab