PDA

View Full Version : Do not count replies towards postcount total.


neuron
08-09-2002, 05:12 PM
Would love an option like that in the admin pannel, right next to the "count posts in this forum towards postcount total".

We got a humor forum, I'm growing tired of "hehe" +1 postcount ;)

Also, would love it compatible with the "Update User's Post Counts" option in "Import & Maintenance".

[D]Vincent
08-10-2002, 04:42 AM
Do you mean just make it turn off to where you get +1 to your postcount for that forum? If that's what you mean then there's already in option for it. Atleast with 2.2.6 there is.

neuron
08-10-2002, 11:48 AM
I still want people to get +1 postcount for new threads, just not replies.

Logician
08-22-2002, 08:02 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 ($forumid!=X){
$DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}


Replace X with the forumid that you dont want replies increase users' post counts.

neuron
08-22-2002, 09:57 AM
great man, thanks a lot :)