This is what I came up with for 6.0.1 that worked, and appears to work on a 6.2 test board. I would use this code at your own risk.<br /><br />"DeletedThreads" is the keyword for the forum that contains deleted threads. moderators need moderator rights to this forum in order for this to work.<br /><br />This moves them without a confirmation step.<br /><br />I put this in the editpost_manage.tmpl which would be displayed to only admin/mods.<br /><br />To move a post and replies:<br /><br /><FORM METHOD=POST action ="{$config['phpurl']}/admin/domovepost.php"><br /><INPUT TYPE=HIDDEN NAME=Cat VALUE="$Cat"><br /><INPUT TYPE=HIDDEN NAME=page VALUE="$page"><br /><INPUT TYPE=HIDDEN NAME=view VALUE="$view"><br /><INPUT TYPE=HIDDEN NAME=sb VALUE="$sb"><br /><input type=hidden name=o value="$o"><br /><input type=hidden name="Keyword" value="DeletedThreads"> <br /><INPUT TYPE=HIDDEN NAME="oldboard" value="$board"><br /><input type=hidden name="number" value="$Number"><br /><input type=submit value="*Delete Post & Replies" class="buttons"><br /></form> <br /><br />To move a thread/topic:<br /><br /><FORM METHOD = POST action ="{$config['phpurl']}/admin/domovethreads.php"><br /><INPUT TYPE=HIDDEN NAME=Cat VALUE="$Cat"><br /><INPUT TYPE=HIDDEN NAME=page VALUE="$page"><br /><INPUT TYPE=HIDDEN NAME=view VALUE="$view"><br /><INPUT TYPE=HIDDEN NAME=sb VALUE="$sb"><br /><input type=hidden name=o value="$o"><br /><input type=HIDDEN name="Keyword" value="DeletedThreads"> <br /><INPUT TYPE=HIDDEN NAME="oldboard" value="$Board"><br /><input type=hidden name="number" value="$Main"><br /><input type=submit value="*Delete Thread" class="buttons"><br /></FORM><br /><br />You could then hide the real delete buttons if you wanted.