Log in

View Full Version : Sessions


misterfade
09-29-2005, 02:54 PM
With 3.0.7, I was using on non-vb pages:


$session['sessionhash'] = fetch_sessionhash();


What is it for 3.5? I really need to figure out how to carry sessions over on non-vb pages!

Thanks.

calorie
09-29-2005, 04:58 PM
Try something like the following...

$vbulletin->session->vars = $vbulletin->session->fetch_session($vbulletin->userinfo['userid']);
$session['sessionhash'] = $vbulletin->session->vars['sessionhash'];

misterfade
09-29-2005, 05:17 PM
That's perfect! Thanks a lot.