summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/SiteLogsDownload.php
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-01-20 09:13:25 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-01-20 09:13:33 +0000
commita0e7c4295c1f0b23b4dae10740838cc05665866f (patch)
tree4e4f1587dbfca52a1da78122f6e4758a9c578efc /app/Http/RequestHandlers/SiteLogsDownload.php
parentba7c3e26ff663c2e583d184a239141932e62a3f8 (diff)
downloadwebtrees-a0e7c4295c1f0b23b4dae10740838cc05665866f.tar.gz
webtrees-a0e7c4295c1f0b23b4dae10740838cc05665866f.tar.bz2
webtrees-a0e7c4295c1f0b23b4dae10740838cc05665866f.zip
Use consistent upper/lower case in charset header
Diffstat (limited to 'app/Http/RequestHandlers/SiteLogsDownload.php')
-rw-r--r--app/Http/RequestHandlers/SiteLogsDownload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/RequestHandlers/SiteLogsDownload.php b/app/Http/RequestHandlers/SiteLogsDownload.php
index 60df4f75c4..e235b923de 100644
--- a/app/Http/RequestHandlers/SiteLogsDownload.php
+++ b/app/Http/RequestHandlers/SiteLogsDownload.php
@@ -68,7 +68,7 @@ class SiteLogsDownload implements RequestHandlerInterface
->implode('');
return response($content, StatusCodeInterface::STATUS_OK, [
- 'Content-Type' => 'text/csv; charset=utf-8',
+ 'Content-Type' => 'text/csv; charset=UTF-8',
'Content-Disposition' => 'attachment; filename="webtrees-logs.csv"',
]);
}