summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2006-08-15 12:16:53 +0000
committerxue <>2006-08-15 12:16:53 +0000
commitf29e7b34891d2bb10da8cd1beb55a1b336484d22 (patch)
treeb0f22158e4704d7ca042c8cc2734ab641d40cbc4 /framework
parente51b31535521738c7bd8fc8d89e80d57f11eddda (diff)
Fixed a typo in TControl::setCustomData()
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/UI/TControl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index 29648553..9c3413bc 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -470,7 +470,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable
*/
public function setCustomData($value)
{
- $this->getViewState('CustomData',$value,null);
+ $this->setViewState('CustomData',$value,null);
}
/**