summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
Diffstat (limited to 'system/core')
-rw-r--r--system/core/Output.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Output.php b/system/core/Output.php
index bcba2577a..45a82f3cb 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -28,7 +28,6 @@
*/
class CI_Output {
- public $parse_exec_vars = TRUE; // whether or not to parse variables like {elapsed_time} and {memory_usage}
protected $final_output;
protected $cache_expiration = 0;
protected $headers = array();
@@ -36,6 +35,7 @@ class CI_Output {
protected $enable_profiler = FALSE;
protected $_zlib_oc = FALSE;
protected $_profiler_sections = array();
+ protected $parse_exec_vars = TRUE; // whether or not to parse variables like {elapsed_time} and {memory_usage}
function __construct()
{