summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2010-11-10 22:03:29 +0100
committerPascal Kriete <pascal.kriete@ellislab.com>2010-11-10 22:03:29 +0100
commit8adf8b03017cb0ca0c6e99ec9c1995b11f8237e6 (patch)
tree96736f8da99b8ad7499d1c884d7fa83fbbbea667 /system/core/Loader.php
parentfa67d54da36ae7a210e995d80a5273f0bc0d7ea0 (diff)
Removing a global call that was needed for php 4.
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r--system/core/Loader.php4
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();
}
}