lc-garcia
13 years agoGuide
#assign directive
Hi there, Could someone please have a look at the following snippet? <#assign latestTopicsTabIndex = 402 /> <#list latestTopics.message as message> ... ...
- 13 years ago
Looks like you may be using parentheses instead of curly brackets for that variable.
Instead of this:
$(latestTopicsTabIndex)
Try this:
${latestTopicsTabIndex}