PDA

View Full Version : Excluding a certain thread from the users post count


orozery
07-02-2003, 09:08 AM
I have in my forum a thread in which users can post meaningless things. I don't want their posts in this thread to be calculated in their post counter.
I know there is an option to make a forum that will not count posts but I don't need a forum, only a thread.
I'll be grateful for anyone who will make such hack!

Logician
07-02-2003, 09:25 AM
edit newreply.php, find:


$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");


Replace it as:


if ($threadid!=X)
{
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}

Replace X with your threadid

orozery
07-02-2003, 11:35 AM
Thank you!
But I also need a hack for the Update Post Counters in the admin panel (admin/misc.php)...