diff options
author | wei <> | 2006-05-14 00:30:53 +0000 |
---|---|---|
committer | wei <> | 2006-05-14 00:30:53 +0000 |
commit | ae43fa72cdae13bace16a5b8250170e472bb2b87 (patch) | |
tree | 6efea16ae0773f5c739bff2cf643f54ba499e5c0 /framework/Web/UI/TControl.php | |
parent | ddc3ea15bbfd0235fe90f3b2211bf4cc605e25d6 (diff) |
refactor active controls.
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r-- | framework/Web/UI/TControl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index 7121e5ed..7ca37a00 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -1250,7 +1250,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable }
}
- if($this->getEnabled() && $this instanceof IPostBackDataHandler)
+ if($this instanceof IPostBackDataHandler)
$this->getPage()->registerPostDataLoader($this);
}
$this->_stage=self::CS_PRERENDERED;
|