Thanks Lynne
For anyone else who wants to know how to do this, this is what I done.
Open Profile.php
Find:
PHP Code:
// save the data
$userdata->save();
if ($vbulletin->session->vars['profileupdate'])
{
$vbulletin->session->set('profileupdate', 0);
}
if (empty($vbulletin->GPC['gotopassword']))
{
$vbulletin->url = '[COLOR="Red"]usercp.php[/COLOR]' . $vbulletin->session->vars['sessionurl_q'];
}
else
{
$vbulletin->url = 'profile.php?' . $vbulletin->session->vars['sessionurl'] . 'do=editpassword';
}
eval(print_standard_redirect('redirect_updatethanks'));
}
replace with:
PHP Code:
// save the data
$userdata->save();
if ($vbulletin->session->vars['profileupdate'])
{
$vbulletin->session->set('profileupdate', 0);
}
if (empty($vbulletin->GPC['gotopassword']))
{
$vbulletin->url = '[COLOR="Red"]profile.php?do=extra[/COLOR]' . $vbulletin->session->vars['sessionurl_q'];
}
else
{
$vbulletin->url = 'profile.php?' . $vbulletin->session->vars['sessionurl'] . 'do=editpassword';
}
eval(print_standard_redirect('redirect_updatethanks'));
}