Changeset 197 for trunk/trax/vendor/trax/action_controller.php
- Timestamp:
- 04/18/06 11:43:51 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/action_controller.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_controller.php
r196 r197 529 529 */ 530 530 function process_route() { 531 531 532 532 # First try to load the routes and setup the paths to everything 533 533 if(!$this->loaded) { … … 550 550 if($this->loaded) { 551 551 552 include_once($this->controller_file); 552 include_once($this->controller_file); 553 553 if(class_exists($this->controller_class, false)) { 554 554 … … 557 557 558 558 if(is_object($this->controller_object)) { 559 559 560 560 $this->controller_object->controller = $this->controller; 561 561 $this->controller_object->action = $this->action; … … 592 592 } 593 593 } 594 } 594 } 595 595 } 596 596 … … 604 604 include_once($this->helper_file); 605 605 } 606 606 607 607 if(is_object($this->controller_object)) { 608 608
