In profile.php, find and change the following lines:
PHP Code:
if (empty($vbulletin->GPC['gotopassword']))
{
$vbulletin->url = 'usercp.php' . $vbulletin->session->vars['sessionurl_q'];
}
else
{
$vbulletin->url = 'profile.php?' . $vbulletin->session->vars['sessionurl'] . 'do=editpassword';
}
eval(print_standard_redirect('redirect_updatethanks'));
Maybe adding a plugin to the hook location 'profile_updateprofile' with something like the following will also work (but is risky):
PHP Code:
if (empty($vbulletin->GPC['gotopassword']))
{
global $userdata;
// save the data
$userdata->save();
$vbulletin->url = YOUR REDIRECT URL;
eval(print_standard_redirect('redirect_updatethanks'));
}