Thread: Ignore Feature
View Single Post
  #8  
Old 08-18-2007, 05:50 AM
absolutepunk absolutepunk is offline
Member
 
Join Date: Nov 2005
Posts: 38
Geek Article and Review System License Holder 
Default

Changing the plugin: "GARS - Process Postbit" to this:

PHP Code:
global $vbulletin;
if(
$vbulletin->gars)
{
$ignorelist=explode(' 'trim($vbulletin->userinfo['ignorelist']));
if (!
in_array($post['userid'], $ignorelist))
{
$show['inignorelist']=true;
}
else
{
$show['inignorelist']=false;
}
if(
$show['inignorelist'])
{
$this->templatename=$vbulletin->gars->process_postbit();
}
else
{
$this->templatename=postbit_ignore;
}

Fixes the problem.
Reply With Quote