summaryrefslogtreecommitdiff
path: root/app/Helpers
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/Helpers
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/Helpers')
-rw-r--r--app/Helpers/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Helpers/functions.php b/app/Helpers/functions.php
index 0914b4040a..e25368c53d 100644
--- a/app/Helpers/functions.php
+++ b/app/Helpers/functions.php
@@ -122,7 +122,7 @@ function response($content = '', $code = StatusCodeInterface::STATUS_OK, $header
if ($headers === []) {
if (is_string($content)) {
$headers = [
- 'Content-Type' => 'text/html; charset=utf-8',
+ 'Content-Type' => 'text/html; charset=UTF-8',
'Content-Length' => (string) strlen($content),
];
} else {