summaryrefslogtreecommitdiffstats
path: root/system/core
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-04-07 00:26:10 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-04-07 00:26:10 +0200
commitf2f4ea49cccc8a8a14ec5f1b71fdba54b1990603 (patch)
treeefd6b6686bfa2c078a3238248f5dded62dfe94da /system/core
parenta3f1d6d9949d882b15a3b57466fed71428a4e27a (diff)
Made in Output protected again, it was only ever made public by Eric to fix an issue with the Dwoo MY_Parser, which is no reason to change core files. That Parser doesn't really even need the acess.
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()
{