diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-19 22:38:50 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-19 22:38:50 +0200 |
commit | 40403d21274d5e0792c7ab816ad984d6387d5c20 (patch) | |
tree | 255d722c5f1a3f71035f50018d852da56c0b476f /system/core/Output.php | |
parent | ad4750509885ad5bb368fc308f86d8c06d45b15c (diff) |
Additional formatting fixes
Diffstat (limited to 'system/core/Output.php')
-rwxr-xr-x | system/core/Output.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 671303094..0683539c9 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -50,35 +50,35 @@ class CI_Output { * * @var int */ - public $cache_expiration = 0; + public $cache_expiration = 0; /** * List of server headers * * @var array */ - public $headers = array(); + public $headers = array(); /** * List of mime types * * @var array */ - public $mime_types = array(); + public $mime_types = array(); /** * Determines wether profiler is enabled * * @var book */ - public $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 @@ -92,7 +92,7 @@ class CI_Output { * * @var bool */ - public $parse_exec_vars = TRUE; + public $parse_exec_vars = TRUE; /** * Set up Output class |