diff options
Diffstat (limited to 'framework/Web/UI/WebControls/TBulletedList.php')
-rw-r--r-- | framework/Web/UI/WebControls/TBulletedList.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TBulletedList.php b/framework/Web/UI/WebControls/TBulletedList.php index d36268ce..8857ecb1 100644 --- a/framework/Web/UI/WebControls/TBulletedList.php +++ b/framework/Web/UI/WebControls/TBulletedList.php @@ -236,7 +236,7 @@ class TBulletedList extends TListControl implements IPostBackEventHandler * Renders the control.
* @param THtmlWriter the writer for the rendering purpose.
*/
- protected function render($writer)
+ public function render($writer)
{
if($this->getHasItems())
parent::render($writer);
@@ -246,7 +246,7 @@ class TBulletedList extends TListControl implements IPostBackEventHandler * Renders the body contents.
* @param THtmlWriter the writer for the rendering purpose.
*/
- protected function renderContents($writer)
+ public function renderContents($writer)
{
$this->_isEnabled=$this->getEnabled(true);
$this->_postBackOptions=$this->getPostBackOptions();
|