Well, I had it installed but had to uninstall it when you reported the problem with it. I have re-installed it and it seems to be working fine so far. Good job!
Edit: I was just looking at the file and the $lastposter['userid'] is still in there. Is this how it is supposed to be?
PHP Code:
//Start Views Don't Count based on Variables by 006
if ($noshutdownfunc) {
if ($thread['postuserid']==$bbuserinfo['userid']) {
$DB_site->query("UPDATE thread SET views=views WHERE threadid='$threadid'");}
else if ($lastposter['userid'] != $bbuserinfo['userid']) {
$DB_site->query("UPDATE thread SET views=views WHERE threadid='$threadid'");}
else if (!$bbuserinfo['userid']) {
$DB_site->query("UPDATE thread SET views=views WHERE threadid='$threadid'");}
else if ($thread['postuserid'] <> $bbuserinfo['userid']) {
$DB_site->query("UPDATE thread SET views=views+1 WHERE threadid='$threadid'");}
//End Views Don't Count based on Variables by 006