Show
Ignore:
Timestamp:
05/05/2008 11:02:11 AM (7 months ago)
Author:
Shadowhand
Message:

Whitespace cleanup

Files:
1 modified

Legend:

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

    r2600 r2629  
    9696                        // Path to be added to as we search deeper 
    9797                        $search = 'controllers'; 
    98                          
     98 
    9999                        // controller path to be added to as we search deeper 
    100100                        $controller_path = ''; 
    101                          
     101 
    102102                        // Use the rsegments to find the controller 
    103103                        foreach (self::$rsegments as $key => $segment) 
     
    228228                $routes = Config::item('routes'); 
    229229                $uri    = $routed_uri = trim($uri, '/'); 
    230          
     230 
    231231                if (isset($routes[$uri])) 
    232232                { 
     
    271271 
    272272                return $routed_uri; 
    273         }     
     273        } 
    274274 
    275275} // End Router class