Ok i Have modified the code, and now it works but I hope that someone tell me if this change is good or if I have compromised something in VB funtionality
Before
Code:
// update views counter
if ($vboptions['threadviewslive'])
{
if ($bbuserinfo['userid'])
{
$+++++adarray[$bbuserinfo['userid']] = time() ;
$add+++++ad = ",+++++ad='".addslashes(serialize($+++++adarray))."'";
}
After
Code:
// update views counter
if ($vboptions['threadviewslive'])
{
if ($bbuserinfo['userid'])
{
$+++++adarray[$bbuserinfo['userid']] = time() + 10800;
$add+++++ad = ",+++++ad='".addslashes(serialize($+++++adarray))."'";
}
As you can see I have added the numbero of seconds to fill the offset from server time and my time
Regards