Skip to content

Commit

Permalink
fixed sloppy IE regression, sorrrryyyyy
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Feb 9, 2010
1 parent 17ecdd2 commit 885ea6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configonlylib.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function min_enable_zlib_compression() {
if (isset($parts[1])) {
$parts = explode(' ', trim($parts[1]));
if (count($parts) > 1) {
if ($parts[0] === 'MSIE' and (float)$string[1] < 7) {
if ($parts[0] === 'MSIE' and (float)$parts[1] < 7) {
@ini_set('zlib.output_compression', '0');
return false;
}
Expand Down

0 comments on commit 885ea6d

Please sign in to comment.