diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2010-11-10 22:03:29 +0100 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2010-11-10 22:03:29 +0100 |
commit | 8adf8b03017cb0ca0c6e99ec9c1995b11f8237e6 (patch) | |
tree | 96736f8da99b8ad7499d1c884d7fa83fbbbea667 | |
parent | fa67d54da36ae7a210e995d80a5273f0bc0d7ea0 (diff) |
Removing a global call that was needed for php 4.
-rw-r--r-- | system/core/Loader.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index e97b18102..b64a6e6f4 100644 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -703,9 +703,7 @@ class CI_Loader { } else { - // PHP 4 requires that we use a global - global $OUT; - $OUT->append_output(ob_get_contents()); + $_ci_CI->append_output(ob_get_contents()); @ob_end_clean(); } } |