Update gzip.php

This commit is contained in:
Nicholas Hubbard 2016-01-10 19:24:20 -05:00
parent a68be5e096
commit 818d16521b

View File

@ -30,7 +30,7 @@
* @note If http response header mentions that content is gzipped, then uncompress it.
*/
foreach($http_response_header as $c => $h) {
if(stristr($h, "content-encoding") and stristr($h, "gzip") {
if(stristr($h, "content-encoding") and stristr($h, "gzip")) {
/*
* @note Now, let's begin the actual purpose of this function:
*/