So, we have to give access to banned users to see the shouts? Is there any way around that?
PHP Code:
function isBanned($user)
{
return (isBanned_Check($user['userid'], 'shout_banned_users') || isBanned_Check($user['usergroupid'], 'shout_banned_usergroups'));
}
function isBanned_Check($bash, $against)
{
global $vbulletin;
return in_array($bash, iif($vbulletin->options[$against], explode(',', $vbulletin->options[$against]), array()));
}
On the last part where it says ($bash, iif($vbulletin .... is that iif supposed to if ?