diff options
Diffstat (limited to 'framework/Web/UI/ActiveControls/TCallbackClientScript.php')
| -rw-r--r-- | framework/Web/UI/ActiveControls/TCallbackClientScript.php | 14 | 
1 files changed, 5 insertions, 9 deletions
diff --git a/framework/Web/UI/ActiveControls/TCallbackClientScript.php b/framework/Web/UI/ActiveControls/TCallbackClientScript.php index aaf81380..5f8851db 100644 --- a/framework/Web/UI/ActiveControls/TCallbackClientScript.php +++ b/framework/Web/UI/ActiveControls/TCallbackClientScript.php @@ -318,20 +318,16 @@ class TCallbackClientScript extends TApplicationComponent  		if($content instanceof TControl)
  		{
  			$boundary = $this->getRenderedContentBoundary($content);
 -			$this->callClientFunction('Prado.Element.replaceContent', 
 -					array($element, $method, null, $boundary));		
 +			$content = null;
  		}
  		else if($content instanceof THtmlWriter)
  		{
  			$boundary = $this->getResponseContentBoundary($content);
 -			$this->callClientFunction('Prado.Element.replaceContent', 
 -					array($element, $method, null, $boundary));		
 -		}
 -		else
 -		{
 -			$this->callClientFunction('Prado.Element.replaceContent', 
 -				array($element, $method, $content, $boundary));		
 +			$content = null;
  		}
 +
 +		$this->callClientFunction('Prado.Element.replace', 
 +					array($element, $method, $content, $boundary));		
  	}
  	/**
  | 
