diff options
author | Derek Jones <derek.jones@ellislab.com> | 2007-07-16 15:04:46 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2007-07-16 15:04:46 +0200 |
commit | 6159d1dd0945490d1425ae3269dc3172680a3c91 (patch) | |
tree | b91cef7dc655bd28bd055b8d88ee1dbe677b26b5 /system/libraries/Input.php | |
parent | 9e91094b9eaa9155781b6c87f69aa8d1efb7fe7d (diff) |
Switched from CI super object to $CFG to fetch charset
Diffstat (limited to 'system/libraries/Input.php')
-rw-r--r-- | system/libraries/Input.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Input.php b/system/libraries/Input.php index ba94d854f..b41dcfb29 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -852,8 +852,8 @@ class CI_Input { */
function _html_entity_decode_callback($match)
{
- $CI =& get_instance();
- $charset = $CI->config->item('charset');
+ global $CFG;
+ $charset = $CFG->item('charset');
return $this->_html_entity_decode($match[0], strtoupper($charset));
}
|