diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-02 23:35:48 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-02 23:35:48 +0100 |
commit | 679525d0237ac2e0a94d7b05377eb31eb3398f19 (patch) | |
tree | dcd86b3cdb00e35f451d26bb3023f7a501b57455 /system/core/Controller.php | |
parent | 38e32f643492a7bf0233bb9848138d183fbdfcd4 (diff) |
Removed CI_Loader::initialize() and moved its logic to the constructor.
That method used to be called by the CI_Controller constructor
and was required because of the possibility to instantiate the
Controller class twice due to 404_override, and so some properties
needed to be reset.
Following the last commit - this is no longer the case.
Diffstat (limited to 'system/core/Controller.php')
-rw-r--r-- | system/core/Controller.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/core/Controller.php b/system/core/Controller.php index ee6fec8d5..cbdf0515f 100644 --- a/system/core/Controller.php +++ b/system/core/Controller.php @@ -65,7 +65,6 @@ class CI_Controller { } $this->load =& load_class('Loader', 'core'); - $this->load->initialize(); log_message('debug', 'Controller Class Initialized'); } |