View Single Post
  #7  
Old 05-31-2005, 03:58 AM
 
longhorn180 longhorn180 is offline
 

Senior Member
  
Join Date: Apr 2004
Location: Richmond, Virginia
Posts: 187
 

Default

In your head.tpl you need to close the if statement on the customer login:
Here is what you currently have:
Code:
{if $login eq "" } { include file="auth.tpl" } {else} { include file="authbox.tpl" }
if you add the closing tag on the end like this:
Code:
{if $login eq "" } { include file="auth.tpl" } {else} { include file="authbox.tpl" }{/if}
That should fix it.
__________________
4.1.9 (Linux) Live Store
www.thecrackedbook.com
Find used books and out of print books.
Reply With Quote