MyBB Community Forums

Full Version: Two variable in Templates
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to show 'protected forum' in last post for specific groups.
Below code is not working for me.
Can anyone help me to correct this code?


<if (in_array($mybb->user['usergroup'], array(4,8,9)) && in_array($forum['fid'], array(168))) then>

<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date}<br />{$lang->by} {$lastpost_profilelink}</span>

<else> Protected Forum
</if>