We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Smarty 3.1.28 when I call section more than once in a tpl, it shows a PHP Notice: Undefined index: __section_foo
section
{section name=foo loop=$bar} ... {/section} {section name=foo loop=$bar} ... {/section}
Affected line in compiled template
$__section_foo_1_saved = isset($_smarty_tpl->tpl_vars['__smarty_section_foo']) ? $_smarty_tpl->tpl_vars['__section_foo'] : false;
The text was updated successfully, but these errors were encountered:
- bugfix multiple calls of {section} with same name droped E_NOTICE e…
c4e6ad6
…rror #118
The fix is now in the master branch
Sorry, something went wrong.
Thank you.
No branches or pull requests
In Smarty 3.1.28 when I call
section
more than once in a tpl, it shows a PHP Notice: Undefined index: __section_fooAffected line in compiled template
The text was updated successfully, but these errors were encountered: