diff --git a/CHANGELOG.md b/CHANGELOG.md index f15004d96..a5d8f38dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ 1. [](#bugfix) * Fixed cross volume file system operations [#635](https://github.com/getgrav/grav/issues/635) * Fix issue with pages folders validation not accepting uppercase letters + * Fixed issue with `Content-Encoding: none`. It should really be `Content-Encoding: identity` instead # v1.1.12 ## 12/26/2016 diff --git a/system/src/Grav/Common/Grav.php b/system/src/Grav/Common/Grav.php index c18fa4c2a..44ca7d331 100644 --- a/system/src/Grav/Common/Grav.php +++ b/system/src/Grav/Common/Grav.php @@ -306,7 +306,7 @@ class Grav extends Container } else { // Without gzip we have no other choice than to prevent server from compressing the output. // This action turns off mod_deflate which would prevent us from closing the connection. - header('Content-Encoding: none'); + header('Content-Encoding: identity'); }