my module have a tpl the content are
<iframe border="0" name="rbank" src="{g->url href="modules/pickphotos/templates/right.tpl"}" width="100%" height="500" allowTransparency scrollbars=yes frameBorder="0"></iframe>
this param "src" on this write way can not be parsed, in right.tpl "{$id}" is only the character string.
what can I do?
Posts: 27300
I don't understand.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 6
I means in tpl file how to include another tpl file
if like this "{g->url href="modules/pickphotos/templates/right.tpl"}"
my variable in file "right.tpl" can not use
Posts: 27300
{g->theme include="right.tpl"}
if right.tpl is in the theme.
or
{include file='modules/pickphotos/templates/right.tpl'}
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 6
thanks~~