Quote:
Originally Posted by yoyoyoyo
is there any way to correct the english so it will say "this thread has 1 reply" or "this thread has 2 replies" etc.?
|
Ok, I wrapped some conditionals around the code and it seems to work...
Quote:
<if condition="$thread[replycount] == 1"> This thread has 1 reply and has been viewed $thread[views] times </if>
<if condition="$thread[replycount] > 1"> This thread has $thread[replycount] replies and has been viewed $thread[views] times </if>
<if condition="$thread[replycount] == 0"> This thread has $thread[replycount] replies and has been viewed $thread[views] times </if>
|