PDA

View Full Version : How do you do $vbulletin->url redirects in VB4?


Jaxel
03-30-2010, 02:18 PM
In VB3, if I was running a script, and at the end of the script, wanted to send the user to a specific page, I could do the following:

$vbulletin->url = 'video.php?'.$vbulletin->session->vars['sessionurl'].'do=watch&mid='.$mediaid;
eval(print_standard_redirect('media_added'));


Now it appears you can't do this anymore. How would I do it now?