diff options
author | Andrey Andreev <narf@devilix.net> | 2016-02-15 13:33:34 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-02-15 13:33:34 +0100 |
commit | 2a34081c5e1b8a86d2d3f87c3da69b9d580d6027 (patch) | |
tree | cc6711d21017e211a71b800ef66c821622addb0b /system/core/CodeIgniter.php | |
parent | 2426635afc58f7bbf8355e80d4228076321a669d (diff) |
Pass CI_Config as a parameter to CI_URI constructor
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 14f62edaa..84f224123 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -298,7 +298,7 @@ if ( ! is_php('5.4')) * Instantiate the URI class * ------------------------------------------------------ */ - $URI =& load_class('URI', 'core'); + $URI =& load_class('URI', 'core', $CFG); /* * ------------------------------------------------------ |