Quote:
Originally Posted by Abe1
Your mixing up 2b and 3.
|
No, 2b clearly states.
Code:
2) Edit plugin "vBShout [Template Alteration]" and make the following changes:
b) Find and delete:
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()));
}
And 3 Clearly states
Code:
3) Edit plugin "vBShout [Template Cache]" and make the following changes:
Find:
if (THIS_SCRIPT == "index")
Replace with:
if (VB_AREA == "Forum")
I do not see a mix up here. The code I am told to look for in steps 2b and 2c does not exist as far as I can see. Maybe you can tell me what template/file/plugin I am supposed to find it in?