diff options
author | admin <devnull@localhost> | 2006-10-24 02:15:02 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-24 02:15:02 +0200 |
commit | 2b47ea414625b77a5694419f6905927d614e3e3b (patch) | |
tree | b020a68411ac35c6767da9f707fc6c61a47e12fd /system/libraries/Loader.php | |
parent | c75b09fd0d96a3871a8b02cbf0182d09b80d96e4 (diff) |
Diffstat (limited to 'system/libraries/Loader.php')
-rw-r--r-- | system/libraries/Loader.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index aaeee7f6b..7c42123f5 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -181,8 +181,17 @@ class CI_Loader { return DB($params, $active_record); } + // Grab the super object $CI =& get_instance(); - $CI->db =& DB($params, $active_record); + + // Initialize the db variable. Needed to prevent + // reference errors with some configurations + $CI->db = ''; + + // Load the DB class + $CI->db =& DB($params, $active_record); + + // Assign the DB object to any existing models $this->_ci_assign_to_models(); } @@ -828,11 +837,6 @@ class CI_Loader { */ function _ci_assign_to_models() { - if (count($this->_ci_models) == 0) - { - return; - } - if ($this->_ci_is_instance()) { $CI =& get_instance(); |