]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/AlbumPhoto.php
HTML_Template_HIT:
[software/bife/bife-all.git] / src / BIFE / AlbumPhoto.php
index 1c63d781c739216d58ea57d58aea68c2e4319487..c0ffa0646000f556aa0cf80cfefc84ae3e22099c 100644 (file)
@@ -75,15 +75,17 @@ class BIFE_AlbumPhoto extends BIFE_Widget {
     /**
      * Renders the widget using a template returning a string with the results.
      *
-     * @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
     {
-        $template->group = 'album';
-        return $template->parse('photo', $this->attrs);
+        $template->setGroup('album');
+        $out = $template->parse('photo', $this->attrs);
+        $template->unsetGroup();
+        return $out;
     }
     // -X2C