Changeset 2882

Show
Ignore:
Timestamp:
06/23/2008 06:29:57 PM (5 months ago)
Author:
Shadowhand
Message:

Removed an unnecessary reference in Kohana::key_string()

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/core/Kohana.php

    r2879 r2882  
    266266                        // Run system.post_controller_constructor 
    267267                        Event::run('system.post_controller_constructor'); 
    268                          
     268 
    269269                        // Controller method name, used for calling 
    270270                        $method = Router::$method; 
     
    804804                        // Find the file and return its filename 
    805805                        $paths = Config::include_paths(); 
    806                          
     806 
    807807                        foreach ($paths as $path) 
    808808                        { 
     
    933933                        $files = self::find_file('i18n', $filename); 
    934934 
    935                         if ( ! empty($files))  
     935                        if ( ! empty($files)) 
    936936                        { 
    937937                                foreach ($files as $file) 
     
    997997                        $files = self::find_file('l10n', Config::item('locale.language').'/'.$filename); 
    998998 
    999                         if ( ! empty($files))  
     999                        if ( ! empty($files)) 
    10001000                        { 
    10011001                                foreach ($files as $file) 
     
    10641064                                if (is_array($array[$key]) AND ! empty($keys)) 
    10651065                                { 
    1066                                         $array =& $array[$key]; 
     1066                                        $array = $array[$key]; 
    10671067                                } 
    10681068                                else