diff options
author | xue <> | 2006-06-02 13:56:05 +0000 |
---|---|---|
committer | xue <> | 2006-06-02 13:56:05 +0000 |
commit | 123e3e47b1194ed75b998cfc6bf26b5595070930 (patch) | |
tree | 4f493f321c69a567721965aa11d9b85376f23f3d /framework/Web/UI/WebControls/TDataBoundControl.php | |
parent | c6a44b363bdcd6828420ea490a4000f5fc02bbcc (diff) |
some minor fixes.
Diffstat (limited to 'framework/Web/UI/WebControls/TDataBoundControl.php')
-rw-r--r-- | framework/Web/UI/WebControls/TDataBoundControl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TDataBoundControl.php b/framework/Web/UI/WebControls/TDataBoundControl.php index 0bb771bf..9e6ecbf3 100644 --- a/framework/Web/UI/WebControls/TDataBoundControl.php +++ b/framework/Web/UI/WebControls/TDataBoundControl.php @@ -59,7 +59,7 @@ abstract class TDataBoundControl extends TWebControl */
public function setDataSource($value)
{
- $this->_dataSource=$this->validateDataSource($value);;
+ $this->_dataSource=$this->validateDataSource($value);
$this->onDataSourceChanged();
}
|