From 54d3ed6f0ebd943f9e689a2d1d6026e203913022 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Fri, 17 Oct 2008 07:09:53 +0000 Subject: removed a global --- system/libraries/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 4e312c7aa..f558e91e4 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -962,7 +962,7 @@ class CI_Input { */ function _html_entity_decode_callback($match) { - global $CFG; + $CFG =& load_class('Config'); $charset = $CFG->item('charset'); return $this->_html_entity_decode($match[0], strtoupper($charset)); -- cgit v1.2.3-24-g4f1b