diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-03-02 21:00:36 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-03-02 21:00:36 +0100 |
commit | 7576a3b6b7ed5658cabae96b3e64614f312d76d7 (patch) | |
tree | c6490d7f0022a0b42ba726f08da325ca80846078 | |
parent | c77384069446fb1eee1a0ccf4296d48497fb433c (diff) |
change to use load_class() from core
-rw-r--r-- | system/core/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/URI.php b/system/core/URI.php index 77b814925..cffffc20d 100644 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -44,7 +44,7 @@ class CI_URI { */ function CI_URI() { - $this->config =& load_class('Config'); + $this->config =& load_class('Config', 'core'); log_message('debug', "URI Class Initialized"); } |