Changeset 2467

Show
Ignore:
Timestamp:
06/23/2008 09:15:09 AM (5 months ago)
Author:
tof
Message:

Fixed #870

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/HISTORY

    r2465 r2467  
    77BUG: Ticket#849 - TDatePicker selecting current date problem (Christophe) 
    88BUG: Ticket#860 - Prado::localize() bug (japplegame) 
     9BUG: Ticket#870 - Callback with redirect breaks lifecycle of page (stever) 
    910ENH: Added Prado.Validation.validateControl(id) on client side to validate a specific control (Michael) 
    1011 
  • trunk/framework/Web/UI/ActiveControls/TActivePageAdapter.php

    r1827 r2467  
    131131        protected function redirect($url) 
    132132        { 
    133                 if(!$this->getApplication()->getRequestCompleted()) 
    134                         $this->getApplication()->onEndRequest(); 
     133                Prado::trace("ActivePage redirect()",'System.Web.UI.ActiveControls.TActivePageAdapter'); 
    135134                $this->appendContentPart($this->getResponse(), self::CALLBACK_REDIRECT, $url); 
    136135                //$this->getResponse()->appendHeader(self::CALLBACK_REDIRECT.': '.$url); 
     
    144143        protected function renderResponse($writer) 
    145144        { 
     145                Prado::trace("ActivePage renderResponse()",'System.Web.UI.ActiveControls.TActivePageAdapter'); 
    146146                //renders all the defered render() calls. 
    147147                foreach($this->_controlsToRender as $rid => $forRender)