diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-24 10:31:36 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-24 10:31:36 +0100 |
commit | c26b9ebb00e29be2e972fece3bcf73d33249a64b (patch) | |
tree | b10dac6db61cc657bf5c906a8495994f935c102f /system/core/Input.php | |
parent | 82179bf31f00564282f2a4d9873c6107b6732631 (diff) |
Don't use globals
- Use load_class() to get objects during bootstrap process.
- Change load_class() to accept a class constructor parameter
instead of previously unused class name prefix.
- Change CI_Router::__construct() to accept as a parameter.
Diffstat (limited to 'system/core/Input.php')
-rw-r--r-- | system/core/Input.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index fdb308b5a..620e50f63 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -126,14 +126,12 @@ class CI_Input { $this->_enable_csrf = (config_item('csrf_protection') === TRUE); $this->_sandardize_newlines = (bool) config_item('standardize_newlines'); - global $SEC; - $this->security =& $SEC; + $this->security =& load_class('Security', 'core'); // Do we need the UTF-8 class? if (UTF8_ENABLED === TRUE) { - global $UNI; - $this->uni =& $UNI; + $this->uni =& load_class('Utf8', 'core'); } // Sanitize global arrays |