From 818d16521b78a0320103f9f3fac0f30959738e0e Mon Sep 17 00:00:00 2001 From: Nicholas Hubbard Date: Sun, 10 Jan 2016 19:24:20 -0500 Subject: [PATCH] Update gzip.php --- controllers/functions/gzip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/functions/gzip.php b/controllers/functions/gzip.php index 77d0d39d..ee7b4518 100644 --- a/controllers/functions/gzip.php +++ b/controllers/functions/gzip.php @@ -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: */