Hi, I posted this over at
vbulletin.com, they recommended asking over here. Before I upgraded, I had modified login.php to set a few extra cookies when cookie users login.
Here's where I put them:
PHP Code:
if ($_REQUEST['cookieuser'])
{
vbsetcookie('userid', $bbuserinfo['userid']);
vbsetcookie('password', md5($bbuserinfo['password'] . '61723bfc'));
}
And no matter how hard I look, I can't find where cookies are set in the new login.php. All I see is login sections for admincp and modcp, but nothing for cookie users. Can anyone help?