PHP Code:
$forumdata->set('threadcount', 'threadcount + 1', false);
}
$forumdata->set('replycount', 'replycount + 1', false);
$forumdata->set('lastpost', $this->fetch_field('dateline'));
$forumdata->set('lastpostid', $postid);
$forumdata->set('lastposter', $this->fetch_field('username', 'post'));
if ($this->table == 'thread')
{
$forumdata->set('lastthread', $this->fetch_field('title'));
$forumdata->set('lastthreadid', $this->fetch_field('threadid'));
$forumdata->set('lasticonid', ($this->fetch_field('pollid') ? -1 : $this->fetch_field('iconid')));
$forumdata->set('lastprefixid', $this->fetch_field('prefixid'));
}
else if ($this->info['thread'])
{
$forumdata->set('lastthread', $this->info['thread']['title']);
$forumdata->set('lastthreadid', $this->info['thread']['threadid']);
$forumdata->set('lasticonid', ($this->info['thread']['pollid'] ? -1 : $this->info['thread']['iconid']));
$forumdata->set('lastprefixid', $this->info['thread']['prefixid']);
}
$forumdata->save();
}
if ($this->info['user'] AND empty($this->info['is_automated']))
{
$user =& datamanager_init('User', $this->registry, ERRTYPE_SILENT);
$user->set_existing($this->info['user']);
if ($this->info['forum']['countposts'])
{
$user->set('posts', 'posts + 1', false);
$user->set_ladder_usertitle($this->info['user']['posts'] + 1);
}
$dateline = $this->fetch_field('dateline');
if ($dateline == TIMENOW OR (isset($this->info['user']['lastpost']) AND $dateline > $this->info['user']['lastpost']))
{
$user->set('lastpost', $dateline);
}
$postid = intval($this->fetch_field('postid'));
if ($dateline == TIMENOW OR (isset($this->info['user']['lastpostid']) AND $postid > $this->info['user']['postid']))
{
$user->set('lastpostid', $postid);
}
$user->save();
}
}
}
}
This is the code that add a post count if you post but i cant find the part of reply only if i change the reply part it still give me 1 post.
Anyone can help me with this?