Quote:
Originally Posted by Dark Visor
If you just want to hide the functionality, remove the link from memberinfo template, and replace
Code:
// check whether an invalid entry type is specified
if (!in_array($vbulletin->GPC['type'], array('thread', 'post', 'user')))
{
print_no_permission();
}
in vbfavorites.php with
Code:
// check whether an invalid entry type is specified
if (!in_array($vbulletin->GPC['type'], array('thread', 'post')))
{
print_no_permission();
}
If you care about data queries that will still be running, go through XML and look for places that say 'user'. Those refer to the user-type entries... Just edit or delete the associate code blocks, you'll know which it is
And maybe I'll release a version that allows an admin to enable/disable each of the three parts of the hack 
|
Yep, I was talking about the extra queries. Thanks for the info

That version would be really nice!