10
Now, Quote:
$TheFooter = $xoopsTpl->get_template_vars('xoops_footer');
Does not work. I've put $xoopsTpl in the global statement, but still, don't work. I thinks there's somekind of an error because if i do this :
Quote:
$TheFooter = $xoopsTpl->get_template_vars('xoops_footer');
echo "ello";
The 'ello' does not get outputed. However, If I comment the line, the 'ello' does get outputed :
Quote:
// $TheFooter = $xoopsTpl->get_template_vars('xoops_footer');
echo "ello";
Any idea?