Changeset 7993
- Timestamp:
- 03/20/08 01:21:14 (1 year ago)
- Files:
-
- branches/1.0/lib/controller/sfController.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/controller/sfController.class.php
r7791 r7993 534 534 } 535 535 536 // forward to the mail action 537 $this->forward($module, $action); 536 try 537 { 538 // forward to the mail action 539 $this->forward($module, $action); 540 } 541 catch (Exception $e) 542 { 543 // put render mode back 544 $this->setRenderMode($renderMode); 545 546 // remove viewName 547 if ($viewName) 548 { 549 $this->getContext()->getRequest()->getAttributeHolder()->remove($module.'_'.$action.'_view_name', 'symfony/action/view'); 550 } 551 552 throw $e; 553 } 538 554 539 555 // grab the action entry from this forward

