I've been seeing people hitting this bug all day so I thought it would be a good idea to post an announcement related to it.
Basicly people are begin logged out of the forum at random times, personaly I've only hit the bug once but others seem to get it all the time.
Freddie posted this fix
here
Open class_core.php
Find:
PHP Code:
vbsetcookie('sessionhash', $sessionhash, 0);
Replace with:
PHP Code:
if (!defined('SKIP_SESSIONCREATE'))
{
vbsetcookie('sessionhash', $sessionhash, 0);
}