I made a quick conditional for Currently Active Users so that only Admins and Supermods would be able to click on the words Currently Active Users to go to Who's Online. The thing is though, when I try to save it, its giving me a parse error saying unexpected < on line 29. Heres the conditional in question:
Code:
<if condition="is_member_of($vbulletin->userinfo,6) OR is_member_of($vbulletin->userinfo,5)><a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a><else />$vbphrase[currently_active_users]</if>
I personally don't see any extra < or >
EDIT: Well I feel stupid. I was missing a closing " on my conditional.