diff options
author | wei <> | 2006-04-30 00:15:23 +0000 |
---|---|---|
committer | wei <> | 2006-04-30 00:15:23 +0000 |
commit | 10b65d6d03ee0afc1ec1a50f320af42a79f5492b (patch) | |
tree | d6b8167e0d224f21db6a16da251ba4d069468543 /framework/Web/UI/WebControls | |
parent | 2cc93773feb5e76d2dd002b1dcd463a01d606794 (diff) |
Adding Callback foundations.
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TWizard.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TWizard.php b/framework/Web/UI/WebControls/TWizard.php index 9a2c4ce6..20e27f2b 100644 --- a/framework/Web/UI/WebControls/TWizard.php +++ b/framework/Web/UI/WebControls/TWizard.php @@ -1005,7 +1005,7 @@ class TWizard extends TWebControl implements INamingContainer /**
* Creates child controls within the wizard
*/
- protected function createChildControls()
+ public function createChildControls()
{
$this->reset();
$this->createSideBar();
@@ -1650,7 +1650,7 @@ class TTemplatedWizardStep extends TWizardStep implements INamingContainer * Creates child controls.
* This method mainly instantiates the content template, if any.
*/
- protected function createChildControls()
+ public function createChildControls()
{
$this->getControls()->clear();
if($this->_contentTemplate)
|