diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-09-17 19:51:11 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-09-19 08:05:50 +0000 |
commit | a9f20b94c985b446ba70a5f3b9adb20514697292 (patch) | |
tree | 968cb45146c8fc151a6f042c89e419487d316e70 /core | |
parent | ac58ba5a9056f4b1697af57daa257620eb5bed44 (diff) | |
download | nextcloud-server-a9f20b94c985b446ba70a5f3b9adb20514697292.tar.gz nextcloud-server-a9f20b94c985b446ba70a5f3b9adb20514697292.zip |
l10n: Spelling unification
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 2e5e5642bf2..81ed193a38b 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -655,7 +655,7 @@ var xssfields = xhr.getResponseHeader('X-XSS-Protection') ? xhr.getResponseHeader('X-XSS-Protection').split(';').map(function(item) { return item.trim(); }) : []; if (xssfields.length === 0 || xssfields.indexOf('1') === -1 || xssfields.indexOf('mode=block') === -1) { messages.push({ - msg: t('core', 'The "{header}" HTTP header doesn\'t contain "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.', + msg: t('core', 'The "{header}" HTTP header does not contain "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.', { header: 'X-XSS-Protection', expected: '1; mode=block' |