Seriously? I did not know that, see how much I read? So what about say this href:
HTML Code:
<a href="download.php?do=add">
Also James, how would this differ:
PHP Code:
if ($vbulletin->options['cybfrules_enable_global'] AND strstr($vbulletin->options['cybfrules_enable_items'], 'postthreads'))
{
$cafr_fperms = fetch_permissions($foruminfo['forumid']);
if (($cafr_fperms & $vbulletin->bf_ugp_forumpermissions['canpostnew']) AND (!is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cybfrules_excluded_groups']))) AND $cybfr_havenotaccepted)
{
$cybfr_redtoforum = $vbulletin->input->clean_gpc('r', 'f', TYPE_UINT);
vbsetcookie('cybfr_redtopage', 'newthread.php?do=newthread&f='.$cybfr_redtoforum);
$vbulletin->url = 'misc.php?do=cfrules&doredir=1&cfrset='.$foruminfo['cyb_frules'];
eval(print_standard_redirect('redirect_cybfrules_accept_postthread',1,1));
}
}