View Full Version : When a Thread Moves put a auto Post in it?
Hi there,
i have an Archiv Forum with old Threads, and its very usefull that i can set a auto post in this thread with "Auto Post - Moved to Archiv" when i move it to the archiv.
is there any hack for it or how can i make it? :classic:
Xenon
11-19-2002, 04:53 PM
?
i don't see the effect of this autopost, but here you are:
open postings.php find that: 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: 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)
thanks it works but i have a little problem i want that this post goes to the end and now its always at the top! And that is use the move time and ate now it is "01.01.1970 01:00" :)
Xenon
12-21-2002, 07:19 AM
you're welcome :)
change the insert line with the new one, i edited it :)
ah thanks works now with dateline! :) :banana:
but another little Problem the post does not stand there automaticly, is must moderate them under "Threads awaiting validation" why that? :paranoid:
Xenon
12-21-2002, 07:51 AM
where do i have my mind? :)
again changed that line :)
ah thanks now it works perfect! :)
Xenon
12-21-2002, 08:38 AM
glad we could solve it :)
bigdaddy04
05-18-2004, 02:43 AM
What does this do?
I'm looking for a code that will make a post "Moved to #forum name#" when a thread is moved to another forum by an admin or a mod, does this accomplish the same thing?
Thanks :)
Xenon
05-18-2004, 11:42 AM
'Auto Post - Moved to Archiv'
that's the text of the post, you can change it to whatever you want, for example into:
'Auto Post - Moved to $foruminfo[title]'
so yes it does what you want :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.