Forum Discussion

lc-garcia's avatar
13 years ago

#assign directive

Hi there,        Could someone please have a look at the following snippet?              <#assign latestTopicsTabIndex = 402 />      <#list latestTopics.message as message>            ...    ...
  • AdamN's avatar
    13 years ago

    Looks like you may be using parentheses instead of curly brackets for that variable.

     

    Instead of this:

    $(latestTopicsTabIndex)

     Try this:

    ${latestTopicsTabIndex}