ok, I have 3.0.7
this is the code that I see:
/
PHP Code:
/set thread last view
if ($thread['pollid'] AND $vboptions['updatelastpost'] AND ($displayed_dateline == $thread['lastpost'] OR $threadview == $thread['lastpost']) AND $pollinfo['lastvote'] > $thread['lastpost'])
{
$displayed_dateline = $pollinfo['lastvote'];
}
if ((!$posted OR $updatethreadcookie) AND $displayed_dateline AND $displayed_dateline > $threadview)
{
set_bbarray_cookie('thread_lastview', $threadid, $displayed_dateline);
I am supposed to be looking for this:
PHP Code:
// *********************************************************************************
//set thread last view
$threadview = fetch_bbarray_cookie('thread_lastview', $thread['threadid']);
I did a search in winsyntax(my editor), and the code
PHP Code:
$threadview = fetch_bbarray_cookie('thread_lastview', $thread['threadid']);
is not found until way down the screen no where close to
PHP Code:
//set thread last view
so where should I add the this above?
PHP Code:
################################################################################
########################## Who Viewed This Thread ##############################
########################## CONFIGURATION ##############################
################################################################################
/
*
Any help would be greatly appreciated.