Quote:
Originally Posted by Lynne
You are probably looking for these (use in the php page). Take a look in the articles forums - lots of good stuff in there.
PHP Code:
if (is_member_of($vbulletin->userinfo, 10)) { stuff }
PHP Code:
if (is_member_of($post, 10)) { stuff }
PHP Code:
if ($post['usergroupid'] == 10) { stuff }
PHP Code:
if(in_array($forum['forumid'],array(1,2,3))) { stuff }
|
You're the best... thanks for helping out once again.