]> 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 10a63d01343c397b6bcd8190aa7a5f0c47316ef5..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,8 +101,10 @@ 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