
11-04-2005, 03:20 PM
|
 |
|
|
Join Date: Feb 2004
Location: I LOVE New York!
Posts: 2,886
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by bitg
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?
|
2b and 2c are in the same place as 2a
|