summaryrefslogtreecommitdiff
path: root/framework/Web/UI/TControl.php
diff options
context:
space:
mode:
authorxue <>2006-06-13 02:07:25 +0000
committerxue <>2006-06-13 02:07:25 +0000
commit6e275c7db5cbbf1bf0331bbaf60f3b3ec612c3a7 (patch)
treea7486cb27f2bee3bb492da2a393ae0272119826c /framework/Web/UI/TControl.php
parent1c6f1f79d011579a158e87459040075331b636b7 (diff)
Fixed #224.
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r--framework/Web/UI/TControl.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index d5079382..d1767d57 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -998,7 +998,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable
{
return isset($this->_rf[self::RF_NAMED_OBJECTS][$name]);
}
-
+
/**
* @return boolean true if the control has been initialized.
*/
@@ -1006,7 +1006,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable
{
return $this->getControlStage() >= self::CS_CHILD_INITIALIZED;
}
-
+
/**
* @return boolean true if the control has loaded post data.
*/
@@ -1250,9 +1250,9 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable
$control->evaluateDynamicContent();
}
}
-
+
if($this instanceof IPostBackDataHandler)
- $this->getPage()->registerPostDataLoader($this);
+ $this->getPage()->registerPostDataLoader($this);
}
$this->_stage=self::CS_PRERENDERED;
}
@@ -1821,7 +1821,6 @@ interface IPostBackEventHandler
public function raisePostBackEvent($param);
}
-
/**
* IPostBackDataHandler interface
*