Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/settings/lib/SetupChecks/ForwardedForHeaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function getCategory(): string {
}

public function getName(): string {
return $this->l10n->t('Forwared for headers');
return $this->l10n->t('Forwarded for headers');
}

public function run(): SetupResult {
Expand All @@ -56,7 +56,7 @@ public function run(): SetupResult {
$detectedRemoteAddress = $this->request->getRemoteAddress();

if (!\is_array($trustedProxies)) {
return SetupResult::error($this->l10n->t('Your trusted_proxies setting is not correctly set, it should be an array.'));
return SetupResult::error($this->l10n->t('Your "trusted_proxies" setting is not correctly set, it should be an array.'));
}

if (($remoteAddress === '') && ($detectedRemoteAddress === '')) {
Expand Down