commit | f62747451d1f040b36db7611255d7c1b3cdffcdf | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Thu Feb 20 18:05:58 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Thu Feb 20 18:05:58 2014 +0200 |
tree | bdbf06d942fb0a19454d987de0d89f142709013c | |
parent | bb3edf12d0ca82c62f7b7d570108375ec4379749 [diff] [blame] |
Don't use error suppression on ini_get() either
diff --git a/system/core/Output.php b/system/core/Output.php index ef56a97..e8c1c39 100644 --- a/system/core/Output.php +++ b/system/core/Output.php
@@ -120,7 +120,7 @@ */ public function __construct() { - $this->_zlib_oc = (bool) @ini_get('zlib.output_compression'); + $this->_zlib_oc = (bool) ini_get('zlib.output_compression'); $this->_compress_output = ( $this->_zlib_oc === FALSE && config_item('compress_output') === TRUE