diff options
author | wei <> | 2007-01-28 01:22:37 +0000 |
---|---|---|
committer | wei <> | 2007-01-28 01:22:37 +0000 |
commit | ace9c57b1c50709bbe8085e9cf99161a4c574be2 (patch) | |
tree | 63e9dfb9c4f270e478869f863d36a344f1de5acc /framework/Web/UI/TPage.php | |
parent | 97b4d7ca7f7edcedc2d9c113a60d827a967f2c5e (diff) |
Fixed TActiveListBox bug. Add more meta for active record. Fix TCallback docs.
Diffstat (limited to 'framework/Web/UI/TPage.php')
-rw-r--r-- | framework/Web/UI/TPage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index 53c9b03f..96ac6d36 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -846,7 +846,7 @@ class TPage extends TTemplateControl if($control->loadPostData($key,$postData))
$this->_controlsPostDataChanged[]=$control;
}
- else if($control instanceof IPostBackEventHandler &&
+ else if($control instanceof IPostBackEventHandler &&
empty($this->_postData[self::FIELD_POSTBACK_TARGET]))
{
$this->_postData->add(self::FIELD_POSTBACK_TARGET,$key); // not calling setPostBackEventTarget() because the control may be removed later
|