PDA

View Full Version : Forced redirects


nickh
04-30-2009, 07:02 PM
In a custom plugin that's executed at "global_start", I've got vBulletin performing a redirect to an external site:
$vbulletin->url = $account_signup_url;
eval(print_standard_redirect('signup_redirect', true, true));

However, the vBulletin page that is shown just before the user is redirected seems to be completely unstyled:
http://deadorange.com/temp/vb_redirect_page.png

Is this the correct behaviour?

If not, what needs to be done to apply the vBulletin theme to this redirect page?

Thanks,
Nick

Dismounted
05-01-2009, 05:39 AM
My guess is that the style has not been loaded yet. You could try global_setup_complete.

nickh
05-01-2009, 12:38 PM
Perfect! Thanks again, Dismounted.