diff options
| author | xue <> | 2006-04-21 12:05:22 +0000 | 
|---|---|---|
| committer | xue <> | 2006-04-21 12:05:22 +0000 | 
| commit | d29f65df2bc5ce4cf294f687e90a02229bc35356 (patch) | |
| tree | e3269c5d5f06cd24b8cc5444e834f477858b92de /framework/Web/UI/WebControls | |
| parent | e1e034ced29b0b9bf11a49798b4fba4d3dd0164d (diff) | |
Removed the usage of direct property.
Diffstat (limited to 'framework/Web/UI/WebControls')
| -rw-r--r-- | framework/Web/UI/WebControls/TValidationSummary.php | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/framework/Web/UI/WebControls/TValidationSummary.php b/framework/Web/UI/WebControls/TValidationSummary.php index 0d9f88e3..2bc3f62c 100644 --- a/framework/Web/UI/WebControls/TValidationSummary.php +++ b/framework/Web/UI/WebControls/TValidationSummary.php @@ -229,8 +229,8 @@ class TValidationSummary extends TWebControl  	 */
  	protected function getClientScriptOptions()
  	{
 -		$options['ID'] = $this->ClientID;
 -		$options['FormID'] = $this->Page->Form->ClientID;
 +		$options['ID'] = $this->getClientID();
 +		$options['FormID'] = $this->getPage()->getForm()->getClientID();
  		if($this->getShowMessageBox())
  			$options['ShowMessageBox']=true;
  		if(!$this->getShowSummary())
 | 
