Changeset 49

Show
Ignore:
Timestamp:
05/15/2007 04:55:45 PM (19 months ago)
Author:
Shadowhand
Message:

Fixed minor inconsistencies in syntax

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Loader.php

    r48 r49  
    6868        var $_ci_varmap                 = array('unit_test' => 'unit', 'user_agent' => 'agent'); 
    6969         
    70  
     70         
    7171        /** 
    7272         * Constructor 
     
    7777         */ 
    7878        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; 
    8181                $this->_ci_view_path = APPPATH.'views/'; 
    8282                $this->_ci_ob_level  = ob_get_level(); 
    83                                  
     83                 
    8484                log_message('debug', "Loader Class Initialized"); 
    8585        } 
     
    101101        { 
    102102                if ($library == '') 
    103                 { 
    104103                        return FALSE; 
    105                 } 
    106  
     104                 
    107105                if (is_array($library)) 
    108106                {