Topic: Not incrementing posts in a certain forum
I have one forum where I don't want a user's num_posts to go up when they post there. I changed line 322-ish from
$db->query('UPDATE '.$low_prio.$db->prefix.'users SET num_posts=num_posts+1, last_post='.$now.' WHERE id='.$pun_user['id']) or error('Unable to update user', __FILE__, __LINE__, $db->error());
to
if ($fid != 7)
$db->query('UPDATE '.$low_prio.$db->prefix.'users SET num_posts=num_posts+1, last_post='.$now.' WHERE id='.$pun_user['id']) or error('Unable to update user', __FILE__, __LINE__, $db->error());
The id of the forum I want is 7, but the post count is still increasing. Where did I mess up?