Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
11-04-10 09:36 AM - Post#84807
In response to sb1963
Fixed in 3.2 to fix it yourself now in docontact.php
find
Code:
$post->setForumId($conf['contact_forum']);
add above it
Code:
// +----------------------------------
// Get some info on forum
$sql = "
SELECT forum_postcount
FROM " . TABLE_PREFIX . "forums
WHERE forum_id = '".addslashes($conf['contact_forum'])."'
";
if(!$results=$db->executeQuery($sql)) {
dieHere(1,$lang_str['BAD_QUERY'],__LINE__,__FILE__,$sql);
}
list ($fpostcount) = $db->fetchRow($results);
$db->clearResults($results);
// See if posts in this forum incriment the user's post count
$post->setPostCount($fpostcount);
|