Changeset 164 for trunk/trax/vendor/trax/action_controller.php
- Timestamp:
- 03/09/06 12:09:00 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/action_controller.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_controller.php
r163 r164 895 895 } 896 896 } 897 897 898 898 # Pull all the class vars out and turn them from $this->var to $var 899 extract(get_object_vars($this->controller_object)); 899 if(is_object($this->controller_object)) { 900 extract(get_object_vars($this->controller_object)); 901 } 900 902 if(array_key_exists("collection", $options)) { 901 903 foreach($options['collection'] as $tmp_value) {
