Fixed issue with Content-Encoding: none. It should really be Content-Encoding: identity instead

This commit is contained in:
Matias Griese
2017-01-05 12:03:22 +02:00
parent cc96d160a4
commit 0445aa707b
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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');
}