Changeset 49
- Timestamp:
- 05/15/2007 04:55:45 PM (19 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Loader.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Loader.php
r48 r49 68 68 var $_ci_varmap = array('unit_test' => 'unit', 'user_agent' => 'agent'); 69 69 70 70 71 71 /** 72 72 * Constructor … … 77 77 */ 78 78 function CI_Loader() 79 { 80 $this->_ci_is_php5 = (floor(phpversion()) >= 5) ? TRUE : FALSE;79 { 80 $this->_ci_is_php5 = (floor(phpversion()) >= 5) ? TRUE : FALSE; 81 81 $this->_ci_view_path = APPPATH.'views/'; 82 82 $this->_ci_ob_level = ob_get_level(); 83 83 84 84 log_message('debug', "Loader Class Initialized"); 85 85 } … … 101 101 { 102 102 if ($library == '') 103 {104 103 return FALSE; 105 } 106 104 107 105 if (is_array($library)) 108 106 {
