diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-01-22 22:09:26 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-01-22 22:09:26 +0100 |
commit | 77fee9affdd28c647759965aec20028aeb1d8798 (patch) | |
tree | 5a5f1b2c524bae58da30b75a0cc50994dba9c4b5 /system | |
parent | 9cee79136d2b197584bc6e076e7df5d69344be1c (diff) |
removed extraneous load of $CFG in _display_cache()
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Output.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/libraries/Output.php b/system/libraries/Output.php index ed9f6f4ff..f98dab5e0 100644 --- a/system/libraries/Output.php +++ b/system/libraries/Output.php @@ -323,7 +323,6 @@ class CI_Output { */
function _display_cache(&$CFG, &$RTR)
{
- $CFG =& load_class('Config');
$URI =& load_class('URI');
$cache_path = ($CFG->item('cache_path') == '') ? BASEPATH.'cache/' : $CFG->item('cache_path');
|