diff options
author | ctrlaltca <> | 2012-06-04 13:19:53 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-06-04 13:19:53 +0000 |
commit | 1c22314e5d19947bad8b987afbf2c9dc6bf834d6 (patch) | |
tree | 44805f39154165959d2f2eda154ea16d6ef6b5c3 /framework/Web/UI/TPage.php | |
parent | 357ee6f0b72cd1657b01d8ebc5854300e5fadab4 (diff) |
Related to r3159: Script rendering in ajax callbacks doesn't need to happen inside form rendering; avoid using assert(), throw an exception instead
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 9d9ac37e..c227562c 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -968,7 +968,7 @@ class TPage extends TTemplateControl public function ensureRenderInForm($control)
{
if(!$this->getIsCallback() && !$this->_inFormRender)
- throw new TConfigurationException('page_control_outofform',get_class($control),$control->getUniqueID());
+ throw new TConfigurationException('page_control_outofform',get_class($control), $control ? $control->getUniqueID() : null);
}
/**
|