summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TWebControl.php
diff options
context:
space:
mode:
authorxue <>2006-01-01 22:58:37 +0000
committerxue <>2006-01-01 22:58:37 +0000
commitf9f431ec8e564465d08a18d9b402ed8643841fa1 (patch)
treec801c634730017f97509aaa44761e3ca9a500441 /framework/Web/UI/WebControls/TWebControl.php
parentf618592c07c32c4955367a4c5bf9c4e18727cefe (diff)
Added initial TCheckBoxList implementation.
Diffstat (limited to 'framework/Web/UI/WebControls/TWebControl.php')
-rw-r--r--framework/Web/UI/WebControls/TWebControl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TWebControl.php b/framework/Web/UI/WebControls/TWebControl.php
index 8ef47ede..ba6fe04c 100644
--- a/framework/Web/UI/WebControls/TWebControl.php
+++ b/framework/Web/UI/WebControls/TWebControl.php
@@ -379,7 +379,7 @@ class TWebControl extends TControl
* Renders the openning tag for the control (including attributes)
* @param THtmlWriter the writer used for the rendering purpose
*/
- protected function renderBeginTag($writer)
+ public function renderBeginTag($writer)
{
$this->addAttributesToRender($writer);
$writer->renderBeginTag($this->getTagName());
@@ -400,7 +400,7 @@ class TWebControl extends TControl
* Renders the closing tag for the control
* @param THtmlWriter the writer used for the rendering purpose
*/
- protected function renderEndTag($writer)
+ public function renderEndTag($writer)
{
$writer->renderEndTag();
}