Skip to content
New issue

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

Рекурсивное включение и пропавшие переменные #47

Closed
litvinenkow opened this issue Sep 20, 2013 · 3 comments

Comments

@litvinenkow
Copy link
Contributor

Внимание!!! Только при выключенном force_compile!
Есть два кода шаблонов, при включении второго в первый, а затем второго во второй рекурсивно, пропадают переменные , объявленные в первом шаблоне, в данном случае $i

Первый шаблон
{foreach $sites as $i}
{if $i.sections!}
{include "site/sections.tpl" sections=$i.sections}
{/if}
{/foreach}

Второй шаблон
{foreach $sections as $ii}
{if $ii.childlist!}
{include "site/sections.tpl" sections=$ii.childlist}
{/if}
{/foreach}

По-моему за это отвечает строка 45 в файле Compiler.php

Notice: Undefined index: i in C:\server\www\dalimoshop2\www\system_cache\fenom\sections.tpl.1e9ef383.15.php on line 26

Прямая передача $i в шаблон в качестве переменной не помогает
{include "site/sections.tpl" i=$i sections=$ii.childlist}

@bzick
Copy link
Member

bzick commented Sep 20, 2013

Какая версия Fenom и какие параметры установлены?

@bzick
Copy link
Member

bzick commented Sep 20, 2013

А где у Вас во втором шаблоне используется переменная $i ?

@litvinenkow
Copy link
Contributor Author

20.09.2013 18:46, Ivan Shalganov пишет:

А где у Вас во втором шаблоне используется переменная |$i| ?


Reply to this email directly or view it on GitHub
#47 (comment).

Иван, там она используется, просто удалил лишний код и захватил ее, видимо.
Версия 1.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants