Quote:
Originally Posted by Andreas
*** Untested ***
search_getnew_start
PHP Code:
foreach ($vbulletin->forumcache AS $forum)
{
if ($forum['ignoregnp')
{
$vbulletin->GPC['exclude'] .= ",$forum[forumid]";
}
}
|
there is a slight error in the Code above,
PHP Code:
if ($forum['ignoregnp')
should be...
PHP Code:
if ($forum['ignoregnp'])
apart from the small typo .... this works perfecty.
Thanks Andreas