Quote:
Originally Posted by vuiveclub_net
To Cagonni: No!
I want this: "Set this to YES if you want the post count of the POSTER whom was given thanks to go up."
How about this? Please help me! Thank you very much!
|
i dont know php very much but the logical way is editing includes/functions_post_thanks.php
Code:
if ($vbulletin->db->affected_rows() != 0)
{
$set_user_got .= ", reputation = " . $vbulletin->options['post_thanks_reputation'] . " + reputation";
}
}
if ($vbulletin->options['post_thanks_post_count'])
{
$set_user_gave .= ', posts = 1 + posts';
}
may be you should add to $set_user_got variable ', posts = 1 + posts'