Yes its the edit to exclude some forums from the whats new tab.
Heres a copy of the code, note the part that reads (Start Hack) and (End Hack) this line is simply added to the script.
PHP Code:
{
global $vbulletin;
//figure out forums
//This follows the logic of the original search. If a forum is specified then use it and its
//children. If an include list is specified, then use it without its children.
//Do not honor the exclude list if we are using the provided forumid
if ($vbulletin->GPC['f'])
{
$criteria->add_forumid_filter($vbulletin->GPC['f'], true);
}
else
{
if ($vbulletin->GPC['include'])
{
$list = explode(',', $vbulletin->GPC['include']);
if (is_array($list))
{
$list = array_map('intval', $list);
$criteria->add_forumid_filter($list, false);
}
}
// start hack
$vbulletin->GPC['exclude'] .= '20,21,22,25,27,30,37,38,39,41,43,45,49,50,52,56,58,60,71,73,75,89,90,91,92';
// end hack
if ($vbulletin->GPC['exclude'])
{
$list = explode(',', $vbulletin->GPC['exclude']);
if (is_array($list))
{
$list = array_map('intval', $list);
$criteria->add_excludeforumid_filter($list);
}
}
}
}