To Wired: Would you please so kindly to tell me: How it's possible to prevent the page switching to the UserCP, after the Settings have been saved. Know what I mean? Let's start an example...
1. Currently I'm on the
vbulletin/profile.php?do=extra page
2. After pressing the Save Button the Redirect appears to save the settings
3. After saving the page returned to
vbulletin/usercp.php
And exactly the last point I'd like to know how it works. So I'm not sure but I believe it has something to do with that Code below. Especially the last "else" statement...
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';
}
Would you please help me? I'm sure it's just a small thing. Thanks in advance

-Mike