Ok, in trying to define the variable, I found on the functions_forumdisplay this code:
Code:
if ($thread['lastpost'] > $lastread)
{
if ($vbulletin->options['threadmarking'] AND $thread['threadread'])
{
$threadview = $thread['threadread'];
}
else
{
$threadview = intval(fetch_bbarray_cookie('thread_lastview', $thread['threadid']));
}
if ($thread['lastpost'] > $threadview)
{
$thread['status']['new'] = 'new';
$show['gotonewpost'] = true;
}
else
{
$newthreads--;
$show['gotonewpost'] = false;
}
}
else
{
$show['gotonewpost'] = false;
}
Could I insert that in the widgets/recentthreads.php? I am not at all good at the more complex conditionals. I keep reading and reading but get more and more confused.