Thanks, it works.
Quote:
Originally Posted by kh99
...But it will bring you to your private messages page when you press it.
|
Little mod help (in my case).
Template:
Code:
<form action="private.php?do=insertpm&goto=apply_sub" method="post" name="vbform">
private.php:
Code:
$vbulletin->url = 'private.php' . $vbulletin->session->vars['sessionurl_q'];
if($_REQUEST['goto'] == 'apply_sub'){
header('Location: /adm/index.php');
exit;
}else{
eval(print_standard_redirect('pm_messagesent'));
}
}
}