summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2010-03-02 21:00:36 +0100
committerDerek Jones <derek.jones@ellislab.com>2010-03-02 21:00:36 +0100
commit7576a3b6b7ed5658cabae96b3e64614f312d76d7 (patch)
treec6490d7f0022a0b42ba726f08da325ca80846078
parentc77384069446fb1eee1a0ccf4296d48497fb433c (diff)
change to use load_class() from core
-rw-r--r--system/core/URI.php2
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");
}