To continue from last post.
Thank you. Editing profile.php worked just fine.
Although if the person is on the edit password page they will be redirected to the wrong page otherwise the redirect is exactly what I am looking for. In the statement.
PHP Code:
// save the data
$userdata->save();
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';
}
I'd like to add a statement
If $vbulletin->url = 'profile.php?do=editdereg' . $vbulletin->session->vars['sessionurl_q'];
Then goto $vbulletin->url = 'newthread.php?do=hpde' . $vbulletin->session->vars['sessionurl_q'];
So I can retain the original function of the statement. Is that possible?
Thanks again.