summaryrefslogtreecommitdiffstats
path: root/system/core/Controller.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-08-11 02:41:10 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-08-11 02:41:10 +0200
commitd33f91708f73735231f458090a478f1204480c30 (patch)
treeae56861471ef4a26e8cc062eae2ad539d262d667 /system/core/Controller.php
parent03a9599befa5c8967f70960eda40b5f2a65f75cb (diff)
parent6adfe636980da3a7b25e5b87ed8bcd1d008a1243 (diff)
Merge pull request #38 from bubbafoley/develop
404_override route now works for missing controllers in subdirectories.
Diffstat (limited to 'system/core/Controller.php')
-rw-r--r--system/core/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Controller.php b/system/core/Controller.php
index ec86b7920..fddb81e19 100644
--- a/system/core/Controller.php
+++ b/system/core/Controller.php
@@ -48,7 +48,7 @@ class CI_Controller {
$this->load =& load_class('Loader', 'core');
- $this->load->set_base_classes()->ci_autoloader();
+ $this->load->initialize();
log_message('debug', "Controller Class Initialized");
}