diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-12-05 16:32:48 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-12-05 16:32:48 +0100 |
commit | 9fb6dd19f74c72cb98b6108a42575a98d3a9ba0c (patch) | |
tree | aa2bb520c34450e8c40226bc1b60bd002fde822d /system/libraries | |
parent | ffca6c2202f89249d3bc50b5645b94c772ff3b0d (diff) |
tweak in database() to match change to $active_record variable
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 710c5c148..60c495820 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -204,7 +204,7 @@ class CI_Loader { $CI =& get_instance(); // Do we even need to load the database class? - if (class_exists('CI_DB') AND $return == FALSE AND $active_record == FALSE AND isset($CI->db) AND is_object($CI->db)) + if (class_exists('CI_DB') AND $return == FALSE AND $active_record == NULL AND isset($CI->db) AND is_object($CI->db)) { return FALSE; } |