Changeset 2528
- Timestamp:
- 06/23/08 21:58:11 (7 months ago)
- Location:
- branches/0.11
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/controller/AgaviController.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/CHANGELOG
r2523 r2528 12 12 ADD: Allow nested routing structures with concatenated name or action attributes in ancestors other than immediate parents (Dominik) (#764) 13 13 14 CHG: Arguments passed to AgaviController::dispatch() should have precedence over routing results (#777) (David) 14 15 CHG: Introduce generic AgaviStreamLoggerAppender (#773) (David) 15 16 CHG: Make AgaviLoggerAppender an AgaviParameterHolder (#774) (David) -
branches/0.11/src/controller/AgaviController.class.php
r2526 r2528 163 163 try { 164 164 165 // match routes and assign returned initial execution container 166 $container = $this->context->getRouting()->execute(); 167 168 // merge in any arguments given. they need to have precedence over what the routing found 165 169 $requestData = $this->context->getRequest()->getRequestData(); 166 170 if($arguments !== null) { 167 171 $requestData->merge($arguments); 168 172 } 169 170 // match routes and assign returned initial execution container171 $container = $this->context->getRouting()->execute();172 173 173 174 $moduleName = $container->getModuleName();

