/**
* Returns the rendered widget as a string.
*
- * @param HTML_Template_Sigma &$template Template to use to render the widget.
+ * @param HTML_Template_HIT &$template Template to use to render the widget.
*
* @return string
* @access public
function render(&$template) // ~X2C
{
$this->attrs['CONTENTS'] = parent::render($template);
- $template->group = '';
- return $template->parse('bife_page', $this->attrs);
+ $template->setGroup();
+ $out = $template->parse('bife_page', $this->attrs);
+ $template->unsetGroup();
+ return $out;
}
// -X2C
} // -X2C Class :Page
-?>
+?>
\ No newline at end of file