View Single Post
  #2  
Old 04-20-2005, 10:28 AM
 
sportruck sportruck is offline
 

Advanced Member
  
Join Date: Dec 2003
Posts: 70
 

Default

You've got a nested if statement. You need to put your {else} after a {/if} to have it execute in-line with the first if statement.

Example:

Code:
{if something}do this {if another thing} {/if} {else} do this thing instead{/if}
Reply With Quote