Borgs8472
10-11-2005, 10:00 PM
This is arguably a hack part 2 of 2, but I thought I'd make it it's own thread. I based the changes from the Hide Threads Posted By Ignored Users (https://vborg.vbsupport.ru/showthread.php?t=64231) by tjdrico but with similar changes applied to the search.php rather than just the forumdisplay.php
Open search.php
Find:
'threadbit', // result from search threads
'newreply_reviewbit_ignore'
Replace with:
'threadbit', // result from search threads
'newreply_reviewbit_ignore',
'forumrules',
'threadbit_ignore'
Find:
eval('$searchbits .= "' . fetch_template('threadbit') . '";');
and replace with:
if ($ignore["$thread[postuserid]"])
{
eval('$searchbits .= "' . fetch_template('threadbit_ignore') . '";');
}
else
{
eval('$searchbits .= "' . fetch_template('threadbit') . '";');
}
Use this hack in conjunction with the previously mentioned hack and you will not ever see your ignored people's threads!
Open search.php
Find:
'threadbit', // result from search threads
'newreply_reviewbit_ignore'
Replace with:
'threadbit', // result from search threads
'newreply_reviewbit_ignore',
'forumrules',
'threadbit_ignore'
Find:
eval('$searchbits .= "' . fetch_template('threadbit') . '";');
and replace with:
if ($ignore["$thread[postuserid]"])
{
eval('$searchbits .= "' . fetch_template('threadbit_ignore') . '";');
}
else
{
eval('$searchbits .= "' . fetch_template('threadbit') . '";');
}
Use this hack in conjunction with the previously mentioned hack and you will not ever see your ignored people's threads!