Re: Issue with Authentication/Login box
You've got kind of a mess there. Replace this:
{if $login eq "" }
{/if}
{if $login eq "" }
{ include file="news.tpl" }
{else}
{ include file="authbox.tpl" }
{/if}
with this:
{ include file="news.tpl" }
{if $login eq "" }
{include file="auth.tpl" }
{else}
{include file="authbox.tpl" }
{/if}
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
|