Skip to content

Commit 443181f

Browse files
authored
Merge pull request #16840 from kotp/adviced_vs_advised
adviced should be advised
2 parents 12fd910 + 2663fc4 commit 443181f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/js/setupchecks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@
634634
}
635635
} else {
636636
messages.push({
637-
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}),
637+
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}),
638638
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
639639
});
640640
}

core/js/tests/specs/setupchecksSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ describe('OC.SetupChecks tests', function() {
14031403

14041404
async.done(function( data, s, x ){
14051405
expect(data).toEqual([{
1406-
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>.',
1406+
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>.',
14071407
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
14081408
}]);
14091409
done();

0 commit comments

Comments
 (0)