MDL-78198 file: Stop sending the Accept-Charset header in curl

See notes on:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Charset

Warning: Do not use this header. Browsers omit this header and servers
should ignore it.

The Accept-Charset request HTTP header was a header that advertised a
client's supported character encodings. It is no longer widely used.

UTF-8 is well-supported and the overwhelmingly preferred choice for
character encoding. To guarantee better privacy through less
configuration-based entropy, all browsers omit the Accept-Charset
header.
This commit is contained in:
Andrew Nicols 2023-05-10 20:46:41 +08:00
parent f49d120761
commit f5c2bb717e
No known key found for this signature in database
GPG Key ID: 6D1E3157C8CFBF14

View File

@ -3513,7 +3513,6 @@ class curl {
if (empty($this->header)) {
$this->setHeader(array(
'User-Agent: ' . $useragent,
'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7',
'Connection: keep-alive'
));
} else if (!in_array('User-Agent: ' . $useragent, $this->header)) {