]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Page.php
HTML_Template_HIT:
[software/bife/bife-all.git] / src / BIFE / Page.php
index 1d68fa0a10acaf4cfbd79b42c16a16a92c8822b5..0bff2f950508b5d2c94cb9b027ab2d4deae5dc31 100644 (file)
@@ -93,7 +93,7 @@ class BIFE_Page extends BIFE_Root {
     /**
      * 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
@@ -101,11 +101,13 @@ class BIFE_Page extends BIFE_Root {
     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