Ok, here it is. Find:
PHP Code:
// make sure not to have redundancy in the view list, so get who's viewed it
// first (and do nothing for invisible users)
$thisthread = $DB_site->query_first("SELECT useridviews FROM thread
WHERE threadid = $threadid");
$useridviews = explode(" ", $thisthread['useridviews']);
if (!$bbuserinfo['invisible'])
{
if (!empty($thisthread['useridviews']))
{
if (!in_array($bbuserinfo['userid'], $useridviews))
{
$DB_site->query("
UPDATE thread
SET useridviews = CONCAT(useridviews, \" \", \"" .
$bbuserinfo['userid'] . "\")
WHERE threadid = $threadid");
}
}
else
{
$DB_site->query("UPDATE thread
SET useridviews = \"" . $bbuserinfo['userid'] . "\"
WHERE threadid = $threadid");
}
}
Change it to:
PHP Code:
// make sure not to have redundancy in the view list, so get who's viewed it
// first (and do nothing for invisible users)
$thisthread = $DB_site->query_first("SELECT useridviews FROM thread
WHERE threadid = $threadid");
$useridviews = explode(" ", $thisthread['useridviews']);
//if (!$bbuserinfo['invisible'])
//{
if (!empty($thisthread['useridviews']))
{
if (!in_array($bbuserinfo['userid'], $useridviews))
{
$DB_site->query("
UPDATE thread
SET useridviews = CONCAT(useridviews, \" \", \"" .
$bbuserinfo['userid'] . "\")
WHERE threadid = $threadid");
}
}
else
{
$DB_site->query("UPDATE thread
SET useridviews = \"" . $bbuserinfo['userid'] . "\"
WHERE threadid = $threadid");
}
//}
Find:
PHP Code:
$thread['viewers'] = implode(", ", $viewers);
}
Change it to:
PHP Code:
$thread['viewers'] = implode(", ", $viewers);
If ($bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==5) {
eval("\$totalviewers = \"".gettemplate('showthread_totalviewers')."\";");
}
}
Make a new template called "showthread_totalviewers" (and don't forget to include this in the templatesused line in the showthread.php)
PHP Code:
<table cellpadding="0" cellspacing="0" border="0" bgcolor="{ tablebordercolor}" width="100%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr id="cat">
<td bgcolor="{ tableheadbgcolor}" nowrap><normalfont><b>Already viewed: <i>$thread[title]</i></b></normalfont></td>
</tr>
<tr>
<td bgcolor="{ firstaltcolor}" align="center" nowrap>
<table cellpadding="4" cellspacing="0" border="0" width="100%">
<tr>
<td><smallfont><b>$thread[viewers]</smallfont></td>
</tr>
</table>
</td></tr></table>
</td></tr></table>
<br />
Take the spaces out after the { in the code
and put "$totalviewers" wherever you want it to show up in the showthread template (I put it at the bottom).