Changeset 2467
- Timestamp:
- 06/23/2008 09:15:09 AM (5 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
HISTORY (modified) (1 diff)
-
framework/Web/UI/ActiveControls/TActivePageAdapter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/HISTORY
r2465 r2467 7 7 BUG: Ticket#849 - TDatePicker selecting current date problem (Christophe) 8 8 BUG: Ticket#860 - Prado::localize() bug (japplegame) 9 BUG: Ticket#870 - Callback with redirect breaks lifecycle of page (stever) 9 10 ENH: Added Prado.Validation.validateControl(id) on client side to validate a specific control (Michael) 10 11 -
trunk/framework/Web/UI/ActiveControls/TActivePageAdapter.php
r1827 r2467 131 131 protected function redirect($url) 132 132 { 133 if(!$this->getApplication()->getRequestCompleted()) 134 $this->getApplication()->onEndRequest(); 133 Prado::trace("ActivePage redirect()",'System.Web.UI.ActiveControls.TActivePageAdapter'); 135 134 $this->appendContentPart($this->getResponse(), self::CALLBACK_REDIRECT, $url); 136 135 //$this->getResponse()->appendHeader(self::CALLBACK_REDIRECT.': '.$url); … … 144 143 protected function renderResponse($writer) 145 144 { 145 Prado::trace("ActivePage renderResponse()",'System.Web.UI.ActiveControls.TActivePageAdapter'); 146 146 //renders all the defered render() calls. 147 147 foreach($this->_controlsToRender as $rid => $forRender)
