]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Generic.php
HTML_Template_HIT:
[software/bife/bife-all.git] / src / BIFE / Generic.php
index c1a1b6065e2445e26081f7e76106b42993ea152b..bbda5bdc52cc6256ee46461395d6c9182a7a541b 100644 (file)
@@ -94,7 +94,7 @@ class BIFE_Generic extends BIFE_Container {
     /**
      * Renders the widget.
      *
-     * @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
@@ -102,8 +102,10 @@ class BIFE_Generic extends BIFE_Container {
     function render(&$template) // ~X2C
     {
         $this->attrs['CONTENTS'] = parent::render($template);
-        $template->group = '';
-        return $template->parse(get_class($this), $this->attrs);
+        $template->setGroup();
+        $out = $template->parse(get_class($this), $this->attrs);
+        $template->unsetGroup();
+        return $out;
     }
     // -X2C