briansol
09-11-2008, 06:11 PM
Many url's have the session parameter missing.
ie,
if ($vba_options['links_navbarhomelink'])
{
$navbits["$vba_options[links_homeurl]/index.php"] = $vba_options['links_title'];
}
should be
removed
A non-cookied user visiting the forums, reads a couple threads, then the links, then goes back to the forums, etc will lose their session of what they've read already.
ie,
if ($vba_options['links_navbarhomelink'])
{
$navbits["$vba_options[links_homeurl]/index.php"] = $vba_options['links_title'];
}
should be
removed
A non-cookied user visiting the forums, reads a couple threads, then the links, then goes back to the forums, etc will lose their session of what they've read already.