Skip to content

Commit

Permalink
bit more compression
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed May 28, 2016
1 parent 6ed1f76 commit da0f9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/src/Grav/Common/Grav.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function process()
echo $this->output;
$debugger->render();
$output = ob_get_clean();
echo gzencode($output, 1, FORCE_GZIP);
echo gzencode($output, 5, FORCE_GZIP);
header("Content-Encoding: gzip");
} else {
echo $this->output;
Expand Down

0 comments on commit da0f9cd

Please sign in to comment.