2.0.1.1: Problem with template variables in Babel module
Posted: Mon Oct 19, 2015 9:53 pm
Hello,
since my site depends on it, I am trying to get the Babel module working with 2.0. Most issues are fixed. Amongst other things, I am retrieving the CMSMS class with
and I am retrieving smarty with
There is one weird thing, though: Some template varables set in the module are not visible when calling
For example, if I define a variable for test purposes in the module like this,
the variable is not included in the template variables.
Why?
since my site depends on it, I am trying to get the Babel module working with 2.0. Most issues are fixed. Amongst other things, I am retrieving the CMSMS class with
Code: Select all
$gCms = cmsms();
Code: Select all
$smarty =& $gCms->GetSmarty();
Code: Select all
{get_template_vars}Code: Select all
$smarty->assign('BOO', "BANG");Why?