Changeset 2114
- Timestamp:
- 10/07/07 14:46:55 (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/src/controller/AgaviExecutionContainer.class.php
r2108 r2114 115 115 $this->outputTypeName = $this->outputType->getName(); 116 116 $arr = get_object_vars($this); 117 unset($arr['context'], $arr['outputType'] );117 unset($arr['context'], $arr['outputType'], $arr['requestData']); 118 118 return array_keys($arr); 119 119 } … … 132 132 $this->context = AgaviContext::getInstance($this->contextName); 133 133 $this->outputType = $this->context->getController()->getOutputType($this->outputTypeName); 134 $rq = $this->context->getRequest(); 135 if($rq->isLocked()) { 136 $this->requestData = new AgaviRequestDataHolder(); 137 } else { 138 $this->requestData = $rq->getRequestData(); 139 } 134 140 unset($this->contextName, $this->outputTypeName); 135 141 }

