Show
Ignore:
Timestamp:
04/18/06 11:43:51 (6 years ago)
Author:
john
Message:

added to AR

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/action_controller.php

    r196 r197  
    529529     */ 
    530530    function process_route() { 
    531      
     531    
    532532        # First try to load the routes and setup the paths to everything 
    533533        if(!$this->loaded) { 
     
    550550        if($this->loaded) { 
    551551             
    552             include_once($this->controller_file); 
     552            include_once($this->controller_file);             
    553553            if(class_exists($this->controller_class, false)) { 
    554554                 
     
    557557                 
    558558                if(is_object($this->controller_object)) { 
    559                      
     559                    
    560560                    $this->controller_object->controller = $this->controller; 
    561561                    $this->controller_object->action = $this->action; 
     
    592592                        } 
    593593                    } 
    594                 } 
     594                }                 
    595595            } 
    596596 
     
    604604                include_once($this->helper_file); 
    605605            } 
    606  
     606             
    607607            if(is_object($this->controller_object)) { 
    608608