finally got around to working on this, this should update the latest posts and counters in the forum you dump the spam reports in.
PHP Code:
// creates a thread - should uses phrases perhaps
function sb_post_thread(&$post,&$hits,$table=null) {
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_threadpost.php');
global $vbulletin;
//$threaddm = new vB_DataManager_Thread_FirstPost($GLOBALS['vbulletin'], ERRTYPE_STANDARD);
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$title = 'SpamBuster report';
if( $spam_threadtitle = $post->fetch_field('title',$table) ) {
$title .= ": $spam_threadtitle";
}
// to keep things tidy
$spam_user = $post->registry->userinfo['username'];
$spam_post = $post->fetch_field('pagetext',$table);
$spam_postid = $post->fetch_field($post->table == 'post' ? 'postid' : 'firstpostid');
$spam_url = $post->registry->options['bburl'] .'/showthread.php?p='. $spam_postid;
foreach($hits as $k => $v) {
if($k == 'total') {
$spam_hit_total = $v;
} else {
$spam_hits[] = "$k=$v";
}
}
$spam_hit_text = implode(',', $spam_hits);
$pagetext = <<<EOT
This is an automatic post from SpamBuster. The following spam post has been detected:
[quote=${spam_user}]${spam_post}[/quote]
To view this post please visit:
[url]${spam_url}[/url]
Rules matched: ${spam_hit_text}
Total score: ${spam_hit_total}
EOT;
$foruminfo['forumid'] = $post->registry->options['spambusterforumid'];
$foruminfo = fetch_foruminfo($foruminfo['forumid']);
$threadinfo = array();
$forumid = $foruminfo['forumid'];
$byusername = $post->registry->options['spambusterusername'];
$postuserid = $post->registry->options['spambusteruser'];
$userid = $post->registry->options['spambusteruser'];
$allowsmilie = '1';
$visible = '1';
$threaddm->setr('forumid', $forumid);
$threaddm->setr('userid', $userid);
$threaddm->setr('pagetext', $pagetext);
$threaddm->setr('title', $title);
$threaddm->set('allowsmilie', $allowsmilie);
$threaddm->set('visible', $visible);
$threaddm->set_info('forum', $foruminfo);
$threaddm->pre_save();
if(count($threaddm->errors) < 1)
{
$threadid = $threaddm->save();
unset($threaddm);
build_thread_counters($threaddm);
}
build_forum_counters($foruminfo['forumid']);
}
if you want to update this, go to the Plugin Manager
Scroll down to Hook Location : global_start
and find SpamBuster Libraries SpamBuster
Edit that, replace the very last function with this one. function sb_post_thread is what you will need to replace.