]> 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 d1ce3485e8d6bc208ecc1b40f9fa788a692c1088..0bff2f950508b5d2c94cb9b027ab2d4deae5dc31 100644 (file)
@@ -93,21 +93,21 @@ 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
      */
     function render(&$template) // ~X2C
     {
-        $contents = parent::render($template);
-        $template->loadTemplateFile('bife_page.html');
-        $template->setVariable($this->attrs);
-        $template->setVariable('CONTENTS', $contents);
-        return $template->get();
+        $this->attrs['CONTENTS'] = parent::render($template);
+        $template->setGroup();
+        $out = $template->parse('bife_page', $this->attrs);
+        $template->unsetGroup();
+        return $out;
     }
     // -X2C
 
 } // -X2C Class :Page
 
-?>
+?>
\ No newline at end of file