Changeset 155 for trunk/trax/vendor/trax/action_controller.php
- Timestamp:
- 02/28/06 12:49:52 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/action_controller.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_controller.php
r142 r155 218 218 219 219 function __construct() { 220 if(!is_object($this->router)) {220 if(!isset($this->router) || !is_object($this->router)) { 221 221 $this->load_router(); 222 222 } … … 507 507 } 508 508 } 509 if(is _array($extra_path)) {509 if(isset($extra_path) && is_array($extra_path)) { 510 510 $extra_path = implode("/", $extra_path); 511 511 $this->added_path = $extra_path;
