?
i don't see the effect of this autopost, but here you are:
open postings.php find that:
PHP Code:
if ($method=="move") { // straight move
$threadinfo[notes]="Moved to '$foruminfo[title]' by $bbuserinfo[username] on ".vbdate($dateformat." ".$timeformat,time()).". $threadinfo[notes]";
$DB_site->query("UPDATE thread SET forumid='".addslashes($forumid)."',notes='".addslashes($threadinfo[notes])."',sticky=0 WHERE threadid='$threadid'");
and change it to:
PHP Code:
if ($method=="move") { // straight move
$threadinfo[notes]="Moved to '$foruminfo[title]' by $bbuserinfo[username] on ".vbdate($dateformat." ".$timeformat,time()).". $threadinfo[notes]";
$DB_site->query("UPDATE thread SET forumid='".addslashes($forumid)."',notes='".addslashes($threadinfo[notes])."',sticky=0 WHERE threadid='$threadid'");
if($forumid==xx) {
$DB_site->query("INSERT INTO post (postid,userid,username,pagetext,threadid,dateline,visible) VALUES (NULL,0,'Forumname','Auto Post - Moved to Archiv',$threadid,".time().",1)");
}
replace the xx in th if-clause with your archiv forumid and the Forumname with the title of your forum (or anything you want to have as username of the Autopost)