diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-27 11:16:35 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-27 11:16:35 +0200 |
commit | 87ac4260063e3a62805cc8f6f73cd2eb18da663a (patch) | |
tree | 8a2463b964a5e7dd6aa606349a4251f70191fce1 /system/core/Output.php | |
parent | a58c0b695a0590aff07a42ad2ad81b544e226af9 (diff) | |
parent | ced2c9ab41450cb632c042730604111ec2a24e1f (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-sqlsrv
Diffstat (limited to 'system/core/Output.php')
-rwxr-xr-x | system/core/Output.php | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 01fd1d867..513c657a6 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -43,50 +43,60 @@ class CI_Output { * * @var string */ - protected $final_output; + public $final_output; + /** * Cache expiration time * * @var int */ - protected $cache_expiration = 0; + public $cache_expiration = 0; + /** * List of server headers * * @var array */ - protected $headers = array(); + public $headers = array(); + /** * List of mime types * * @var array */ - protected $mime_types = array(); + public $mime_types = array(); + /** * Determines wether profiler is enabled * * @var book */ - protected $enable_profiler = FALSE; + public $enable_profiler = FALSE; + /** * Determines if output compression is enabled * * @var bool */ - protected $_zlib_oc = FALSE; + protected $_zlib_oc = FALSE; + /** * List of profiler sections * * @var array */ - protected $_profiler_sections = array(); + protected $_profiler_sections = array(); + /** * Whether or not to parse variables like {elapsed_time} and {memory_usage} * * @var bool */ - protected $parse_exec_vars = TRUE; + public $parse_exec_vars = TRUE; + /** + * Set up Output class + */ public function __construct() { $this->_zlib_oc = @ini_get('zlib.output_compression'); |