Another mod is conflicting with DownloadsII

Line 5721 is the global_complete hook location and shareads() isn't a DownloadsII function. Check your plugin manager for mods (probably an ad manager?) using that hook and give me the PHP code of the plugin.[/QUOTE]
Okay....I'm sorry sweetie but, I am not very savvy at all of this....

. I do have Ad Management installed. Fingers are crossed that this is what you were looking for.
PHP Code:
global $vbam, $vbam_adcode;
if ($vbulletin->options['vbam']['ads'] !== false)
{
if (strpos($output, 'cron.php') !== false && strpos($output, 'href="http://redtyger.co.uk') === false)
{
$output = str_replace('</body>', 'Ad Management plugin by <a href="http://redtyger.co.uk/" target="_blank">RedTyger</a></body>', $output);
}
$output = $vbam->shareads($output);
if ($_REQUEST['do'] == 'editoptions' || $_REQUEST['do'] == 'editprofile')
{
$output = $vbam->adsharing_cp($output);
}
if (empty($vbam_adcode['leftcolumn']) === false || empty($vbam_adcode['rightcolumn']) === false)
{
$output = str_replace('0px '.$stylevar['spacersize'].'px 0px '.$stylevar['spacersize'].'px', '0px', $output);
}
}