Quote:
Originally posted by BigJohnson
That addon for the VIEWS thing that is up a couple of posts. You said to replace the code with that code. Well I have the STORE hack installed so it looks a little different can you help me please. What do i do about it. This is what my code looks like thanks....
|
Search for:
Code:
$DB_site->query("UPDATE thread SET views=views+1 WHERE threadid='$threadid'");
and replace with:
Code:
if ($ownsearch!=1) {
$DB_site->query("UPDATE thread SET views=views+1 WHERE threadid='$threadid'");
}
and search for:
Code:
$shutdownqueries[]="UPDATE LOW_PRIORITY thread SET views=views+1 WHERE threadid='$threadid'";
and replace with:
Code:
if ($ownsearch!=1) {
$shutdownqueries[]="UPDATE LOW_PRIORITY thread SET views=views+1 WHERE threadid='$threadid'";
}
That's all...