Hi folks. Hope you can help me by solving this problem.
If a user posts in a thread he gets 1 forward to his post counter. But if he posts in a second time no reaction. The Counter remains the number of posts it had reight before.
If you go to another thread, in which you've not posted before its the same thing. the post counter only counts 1 post for each thread.
It seems that this change
PHP Code:
newreply.php
before
indexpost($postid,0);
add
// Afterburner
$curtime = time();
$date_today = getdate($curtime);
$time_today=mktime(0,0,0,$date_today[mon],$date_today[mday],$date_today[year]);
$res1 = $DB_site->query("UPDATE afterburner_stat SET newposts = newposts+1 WHERE time = '$time_today'");
// Afterburner
doesn?t work anylonger with v2.30